##// END OF EJS Templates
Updated iptest to skip inputhook*.py files for doctesting.
Updated iptest to skip inputhook*.py files for doctesting.

File last commit:

r1706:a953d91d
r2083:a0f58488
Show More
testrel
31 lines | 804 B | text/plain | TextLexer
Ville M. Vainio
crlf -> lf
r1032 #!/bin/sh
# release test
Fernando Perez
Update utility scripts for bzr workflow
r1542 ipdir=$PWD/..
Ville M. Vainio
crlf -> lf
r1032
Fernando Perez
Finish doc/build tools cleanup....
r1207 cd $ipdir
# Clean up build/dist directories
rm -rf $ipdir/build/*
rm -rf $ipdir/dist/*
Ville M. Vainio
crlf -> lf
r1032 # build source distros
Fernando Perez
Finish doc/build tools cleanup....
r1207 cd $ipdir
Ville M. Vainio
crlf -> lf
r1032 ./setup.py sdist --formats=gztar
# Build rpms
Fernando Perez
Partial fixes for 2.4 compatibility. Unfinished....
r1706 python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5
Ville M. Vainio
crlf -> lf
r1032
# Build eggs
Fernando Perez
Fixes to build/doc scripts.
r1206 python2.4 ./setup_bdist_egg.py
python2.5 ./setup_bdist_egg.py
Ville M. Vainio
crlf -> lf
r1032
# Call the windows build separately, so that the extra Windows scripts don't
# get pulled into Unix builds (setup.py has code which checks for
# bdist_wininst)
./setup.py bdist_wininst --install-script=ipython_win_post_install.py
# Change name so retarded Vista runs the installer correctly
Fernando Perez
Finish doc/build tools cleanup....
r1207 rename 's/win32/win32-setup/' $ipdir/dist/*.exe