Show More
@@ -26,7 +26,8 b" _version_extra = 'dev'" | |||
|
26 | 26 | # _version_extra = 'rc1' |
|
27 | 27 | # _version_extra = '' # Uncomment this for full releases |
|
28 | 28 | |
|
29 | codename = 'Work in Progress' | |
|
29 | # release.codename is deprecated in 2.0, will be removed in 3.0 | |
|
30 | codename = '' | |
|
30 | 31 | |
|
31 | 32 | # Construct full version string from these. |
|
32 | 33 | _ver = [_version_major, _version_minor, _version_patch] |
@@ -82,7 +82,6 b' def pkg_info(pkg_path):' | |||
|
82 | 82 | return dict( |
|
83 | 83 | ipython_version=release.version, |
|
84 | 84 | ipython_path=pkg_path, |
|
85 | codename=release.codename, | |
|
86 | 85 | commit_source=src, |
|
87 | 86 | commit_hash=hsh, |
|
88 | 87 | sys_version=sys.version, |
@@ -95,8 +95,7 b' numpydoc_class_members_toctree = False' | |||
|
95 | 95 | # other places throughout the built documents. |
|
96 | 96 | # |
|
97 | 97 | # The full version, including alpha/beta/rc tags. |
|
98 |
|
|
|
99 | release = "%s: %s" % (iprelease['version'], codename) | |
|
98 | release = "%s" % iprelease['version'] | |
|
100 | 99 | # Just the X.Y.Z part, no '-dev' |
|
101 | 100 | version = iprelease['version'].split('-', 1)[0] |
|
102 | 101 |
General Comments 0
You need to be logged in to leave comments.
Login now