From 4856de676944da60247c9dfc59bed19527e47d64 2008-09-14 04:41:52 From: Fernando Perez Date: 2008-09-14 04:41:52 Subject: [PATCH] Small cleanups for release --- diff --git a/IPython/Release.py b/IPython/Release.py index b744ac2..3cc40eb 100644 --- a/IPython/Release.py +++ b/IPython/Release.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -"""Release data for the IPython project. - -$Id: Release.py 3002 2008-02-01 07:17:00Z fperez $""" +"""Release data for the IPython project.""" #***************************************************************************** # Copyright (C) 2001-2006 Fernando Perez @@ -25,7 +23,7 @@ name = 'ipython' development = False # change this to False to do a release version_base = '0.9' branch = 'ipython' -revision = '1124' +revision = '1143' if development: if branch == 'ipython': diff --git a/tools/release b/tools/release index c5f2c68..170515a 100755 --- a/tools/release +++ b/tools/release @@ -10,17 +10,15 @@ echo echo "Releasing IPython version $version" echo "==================================" -echo "Marking ChangeLog with release information and making NEWS file..." - -# Clean up build/dist directories -rm -rf $ipdir/build/* -rm -rf $ipdir/dist/* - # Perform local backup cd $ipdir/tools ./make_tarball.py mv ipython-*.tgz $ipbackupdir +# Clean up build/dist directories +rm -rf $ipdir/build/* +rm -rf $ipdir/dist/* + # Build source and binary distros cd $ipdir ./setup.py sdist --formats=gztar @@ -28,8 +26,8 @@ cd $ipdir # Build version-specific RPMs, where we must use the --python option to ensure # that the resulting RPM is really built with the requested python version (so # things go to lib/python2.X/...) -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 +#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 # Build eggs python2.4 ./setup_bdist_egg.py