##// END OF EJS Templates
Improve build script....
Improve build script. - does not compile git folder. - go a step further when building various things, upload at as lat step.

File last commit:

r22028:f55cccf5
r22028:f55cccf5
Show More
build_release
28 lines | 658 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
Matthias Bussonnier
Improve build script....
r22028 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)