##// END OF EJS Templates
release 7.0.0b1
Paul Ivanov -
Show More
@@ -23,7 +23,7 b' _version_major = 7'
23 _version_minor = 0
23 _version_minor = 0
24 _version_patch = 0
24 _version_patch = 0
25 _version_extra = '.dev'
25 _version_extra = '.dev'
26 # _version_extra = 'rc2'
26 _version_extra = 'b1'
27 # _version_extra = '' # Uncomment this for full releases
27 # _version_extra = '' # Uncomment this for full releases
28
28
29 # Construct full version string from these.
29 # Construct full version string from these.
@@ -209,7 +209,7 b' the build procedure runs OK, and tests other steps in the release process.'
209 The ``build_release`` script will in particular verify that the version number
209 The ``build_release`` script will in particular verify that the version number
210 match PEP 440, in order to avoid surprise at the time of build upload.
210 match PEP 440, in order to avoid surprise at the time of build upload.
211
211
212 We encourage creating a test build of the docs as well.
212 We encourage creating a test build of the docs as well.
213
213
214 6. Create and push the new tag
214 6. Create and push the new tag
215 ------------------------------
215 ------------------------------
@@ -13,8 +13,8 b" What's new in IPython"
13 =====================
13 =====================
14
14
15 ..
15 ..
16 this will appear in the docs if we are not releasing a versin (ie is
16 this will appear in the docs if we are not releasing a version (ie if
17 `_version_extra` in release.py is empty string
17 `_version_extra` in release.py is an empty string)
18
18
19 .. only:: ipydev
19 .. only:: ipydev
20
20
@@ -25,8 +25,8 b" What's new in IPython"
25 development
25 development
26
26
27 ..
27 ..
28 this make a hidden toctree that avoid sphinx to complain about documents
28 this makes a hidden toctree that keeps sphinx from complaining about
29 included nowhere when building docs for stable
29 documents included nowhere when building docs for stable
30
30
31 .. only:: ipystable
31 .. only:: ipystable
32
32
@@ -17,7 +17,9 b' def build_release():'
17
17
18 with open('docs/source/whatsnew/index.rst') as f:
18 with open('docs/source/whatsnew/index.rst') as f:
19 if ' development' in f.read():
19 if ' development' in f.read():
20 raise ValueError("Please remove `development` from what's new toctree for release")
20 pass
21 # raise ValueError("Please remove `development` from what's new toctree for release")
22
21
23
22 # Cleanup
24 # Cleanup
23 for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'),
25 for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'),
General Comments 0
You need to be logged in to leave comments. Login now