##// END OF EJS Templates
remove notebook examples...
remove notebook examples they have been moved to jupyter/notebook

File last commit:

r20277:6ceb4492
r21637:d1ce07b2
Show More
build_release
28 lines | 592 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
Fernando Perez
Cleaned up release tools directory....
r2118 from toollib import *
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)