##// END OF EJS Templates
Clean up after comments by Tom from his branch review.
Clean up after comments by Tom from his branch review.

File last commit:

r2115:607da213
r2117:3dc36476
Show More
release
35 lines | 765 B | text/plain | TextLexer
Fernando Perez
Tools cleanup in getting ready for 0.10.rc....
r2115 #!/bin/bash
Ville M. Vainio
crlf -> lf
r1032 # IPython release script
PYVER=`python -V 2>&1 | awk '{print $2}' | awk -F '.' '{print $1$2}' `
version=`ipython -Version`
ipdir=~/ipython/ipython
Fernando Perez
Fixes to build/doc scripts.
r1206 ipbackupdir=~/ipython/backup
Ville M. Vainio
crlf -> lf
r1032
echo
echo "Releasing IPython version $version"
echo "=================================="
# Perform local backup
cd $ipdir/tools
Fernando Perez
Fixes to build/doc scripts.
r1206 ./make_tarball.py
mv ipython-*.tgz $ipbackupdir
Ville M. Vainio
crlf -> lf
r1032
Fernando Perez
Tools cleanup in getting ready for 0.10.rc....
r2115 # Build release files
./testrel $ipdir
Ville M. Vainio
crlf -> lf
r1032
# Register with the Python Package Index (PyPI)
echo "Registering with PyPI..."
cd $ipdir
./setup.py register
# Upload all files
cd $ipdir/dist
echo "Uploading distribution files..."
scp * ipython@ipython.scipy.org:www/dist/
echo "Uploading backup files..."
Fernando Perez
Fixes to build/doc scripts.
r1206 cd $ipbackupdir
Fernando Perez
Made release 0.8.3.
r1208 scp `ls -1tr *tgz | tail -1` ipython@ipython.scipy.org:www/backup/
Ville M. Vainio
crlf -> lf
r1032
echo "Done!"