##// END OF EJS Templates
check if readline is available before calling readline functions in ipy_defaults.py
check if readline is available before calling readline functions in ipy_defaults.py

File last commit:

r506:20e0542a
r537:6e28a731
Show More
testrel
29 lines | 820 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
Release 0.7.2.
r322 # Build rpm
fperez
Add support for set_trace-like functionality, but with IPython's enhanced...
r506 #python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0
fperez
Add egg support.
r92 # Build eggs
fperez
Minor updates to release scripts, new backup one using SVN (a lot simpler).
r314 ./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)
# For now, make the win32 installer with a hand-built 2.3.5 python, which is
# the only one that fixes a crash in the post-install phase.
fperez
Minor updates to release scripts, new backup one using SVN (a lot simpler).
r314 #$HOME/tmp/local/bin/python2.3 setup.py bdist_wininst \
# --install-script=ipython_win_post_install.py
./setup.py bdist_wininst --install-script=ipython_win_post_install.py