Skip to content

Commit 76706c4

Browse files
committed
Cut release 0.9. This revision will be tagged as 0.9.
2 parents 13bf190 + 4856de6 commit 76706c4

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

IPython/Release.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
"""Release data for the IPython project.
3-
4-
$Id: Release.py 3002 2008-02-01 07:17:00Z fperez $"""
2+
"""Release data for the IPython project."""
53

64
#*****************************************************************************
75
# Copyright (C) 2001-2006 Fernando Perez <[email protected]>
@@ -25,7 +23,7 @@
2523
development = False # change this to False to do a release
2624
version_base = '0.9'
2725
branch = 'ipython'
28-
revision = '1124'
26+
revision = '1143'
2927

3028
if development:
3129
if branch == 'ipython':

tools/release

+6-8
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,24 @@ echo
1010
echo "Releasing IPython version $version"
1111
echo "=================================="
1212

13-
echo "Marking ChangeLog with release information and making NEWS file..."
14-
15-
# Clean up build/dist directories
16-
rm -rf $ipdir/build/*
17-
rm -rf $ipdir/dist/*
18-
1913
# Perform local backup
2014
cd $ipdir/tools
2115
./make_tarball.py
2216
mv ipython-*.tgz $ipbackupdir
2317

18+
# Clean up build/dist directories
19+
rm -rf $ipdir/build/*
20+
rm -rf $ipdir/dist/*
21+
2422
# Build source and binary distros
2523
cd $ipdir
2624
./setup.py sdist --formats=gztar
2725

2826
# Build version-specific RPMs, where we must use the --python option to ensure
2927
# that the resulting RPM is really built with the requested python version (so
3028
# things go to lib/python2.X/...)
31-
python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
32-
python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5
29+
#python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
30+
#python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5
3331

3432
# Build eggs
3533
python2.4 ./setup_bdist_egg.py

0 commit comments

Comments
 (0)