Skip to content

Commit

Permalink
release 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Sep 15, 2017
1 parent fb9ba8b commit 80cec70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/core/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
_version_patch = 0
_version_extra = '.dev'
# _version_extra = 'rc2'
# _version_extra = '' # Uncomment this for full releases
_version_extra = '' # Uncomment this for full releases

# Construct full version string from these.
_ver = [_version_major, _version_minor, _version_patch]
Expand Down
4 changes: 4 additions & 0 deletions tools/build_release
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ def build_release():
# Load release info
execfile(pjoin('IPython', 'core', 'release.py'), globals())

with open('docs/source/whatsnew/index.rst') as f:
if ' development' in f.read():
raise ValueError("Please remove `development` from what's new toctree for release")

# Cleanup
for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'),
pjoin('docs', 'source', 'api', 'generated')]:
Expand Down

0 comments on commit 80cec70

Please sign in to comment.