##// END OF EJS Templates
Merge pull request #9191 from Carreau/insecure...
Merge pull request #9191 from Carreau/insecure Update release script not to upload insecurly

File last commit:

r22021:9233241b
r22027:bfb620f9 merge
Show More
build_release
28 lines | 655 B | text/plain | TextLexer
Fernando Perez
Fixes to build/doc scripts.
r1206 #!/usr/bin/env python
Fernando Perez
Cleaned up release tools directory....
r2118 """IPython release build script.
ville
initialization (no svn history)
r988 """
Fernando Perez
Build 64-bit windows installer via Wine.
r6601
import os
MinRK
more minor fixes to release scripts...
r17631 from shutil import rmtree
Fernando Perez
Build 64-bit windows installer via Wine.
r6601
Matthias Bussonnier
add explicits imports on release tools
r22021 from toollib import sh, pjoin, get_ipdir, cd, compile_tree, execfile, sdists, wheels
ville
initialization (no svn history)
r988
Fernando Perez
Cleaned up release tools directory....
r2118 # Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
cd(ipdir)
ville
initialization (no svn history)
r988
Fernando Perez
Cleaned up release tools directory....
r2118 # Load release info
Min RK
python3 syntax fixes on various scripts...
r20277 execfile(pjoin('IPython', 'core', 'release.py'), globals())
ville
initialization (no svn history)
r988
Fernando Perez
Cleaned up release tools directory....
r2118 # Check that everything compiles
compile_tree()
ville
initialization (no svn history)
r988
Fernando Perez
Cleaned up release tools directory....
r2118 # Cleanup
Fernando Perez
Minor date/info updates for release.
r4451 for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'),
pjoin('docs', 'source', 'api', 'generated')]:
Fernando Perez
Cleaned up release tools directory....
r2118 if os.path.isdir(d):
MinRK
more minor fixes to release scripts...
r17631 rmtree(d)
Ville M. Vainio
mkrel changes (copy stff from 'release' sh script)
r1197
# Build source and binary distros
Fernando Perez
Put build cmds in a single place to minimize repetition errors.
r6605 sh(sdists)
MinRK
updates to release scripts...
r17581 sh(wheels)