##// END OF EJS Templates
- Add %logstop functionality to fully stop logger after turning it on....
- Add %logstop functionality to fully stop logger after turning it on. - Add new host completion extension, contributed by Gael Pasgrimaud <gawel-AT-afpy.org>.

File last commit:

r895:befa68d1
r895:befa68d1
Show More
testrel
25 lines | 708 B | text/plain | TextLexer
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 #!/bin/sh
# release test
# clean up build/dist directories
rm -rf ~/ipython/ipython/build/*
rm -rf ~/ipython/ipython/dist/*
# build source distros
cd ~/ipython/ipython
./setup.py sdist --formats=gztar
fperez
- Add %logstop functionality to fully stop logger after turning it on....
r895 # Build rpms
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
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
fperez
Add egg support.
r92 # Build eggs
fperez
- Add %logstop functionality to fully stop logger after turning it on....
r895 python2.4 ./eggsetup.py bdist_egg
python2.5 ./eggsetup.py bdist_egg
fperez
Add egg support.
r92
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # 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)
fperez
Minor updates to release scripts, new backup one using SVN (a lot simpler).
r314 ./setup.py bdist_wininst --install-script=ipython_win_post_install.py