##// END OF EJS Templates
add codename to sphinx index and what's new
MinRK -
Show More
@@ -83,9 +83,10 b' github_project_url = "https://github.com/ipython/ipython"'
83 # other places throughout the built documents.
83 # other places throughout the built documents.
84 #
84 #
85 # The full version, including alpha/beta/rc tags.
85 # The full version, including alpha/beta/rc tags.
86 release = iprelease['version']
86 codename = iprelease['codename']
87 # The short X.Y version.
87 release = "%s: %s" % (iprelease['version'], codename)
88 version = '.'.join(release.split('.',2)[:2])
88 # Just the X.Y.Z part, no '-dev'
89 version = iprelease['version'].split('-', 1)[0]
89
90
90
91
91 # There are two options for replacing |today|: either, you set today to some
92 # There are two options for replacing |today|: either, you set today to some
@@ -2,8 +2,9 b''
2 1.0 Series
2 1.0 Series
3 ============
3 ============
4
4
5 Release 1.0
5 Release 1.0.0: An Afternoon Hack
6 ===========
6 ================================
7
7
8
8 IPython 1.0 requires Python ≥ 2.6.5 or ≥ 3.2.1.
9 IPython 1.0 requires Python ≥ 2.6.5 or ≥ 3.2.1.
9 It does not support Python 3.0, 3.1, or 2.5.
10 It does not support Python 3.0, 3.1, or 2.5.
General Comments 0
You need to be logged in to leave comments. Login now