##// END OF EJS Templates
Working implementation of cell mode with regular expressions - cleaner.
Working implementation of cell mode with regular expressions - cleaner.

File last commit:

r6606:e085bfad
r6979:b89562be
Show More
build_release
38 lines | 845 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
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
Fernando Perez
Minor date/info updates for release.
r4451 execfile(pjoin('IPython', 'core', 'release.py'))
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):
remove_tree(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)
Ville M. Vainio
mkrel changes (copy stff from 'release' sh script)
r1197
# Build eggs
Fernando Perez
Put build cmds in a single place to minimize repetition errors.
r6605 sh(eggs)
ville
initialization (no svn history)
r988
Fernando Perez
Put windows build cmds in a reusable location so we can upload .exes to PyPI.
r6604 # Run windows builds
map(sh, win_builds)
ville
initialization (no svn history)
r988
Fernando Perez
Cleaned up release tools directory....
r2118 # Change name so retarded Vista runs the installer correctly
Fernando Perez
Build 64-bit windows installer via Wine.
r6601 sh("rename 's/linux-i686/win32/' dist/*.exe")
sh("rename 's/linux-x86_64/win32/' dist/*.exe")
# exe files aren't really executable under *nix.
sh("chmod -x dist/*.exe")