##// 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
#!/usr/bin/env python
"""IPython release build script.
"""
import os
from shutil import rmtree
from toollib import sh, pjoin, get_ipdir, cd, compile_tree, execfile, sdists, wheels
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
cd(ipdir)
# Load release info
execfile(pjoin('IPython', 'core', 'release.py'), globals())
# Check that everything compiles
compile_tree('*')
# Cleanup
for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'),
pjoin('docs', 'source', 'api', 'generated')]:
if os.path.isdir(d):
rmtree(d)
# Build source and binary distros
sh(sdists)
sh(wheels)