##// END OF EJS Templates
Final commit for 0.7.0.rc1
fperez -
Show More
@@ -1,7 +1,7 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Release data for the IPython project.
3 3
4 $Id: Release.py 951 2005-12-25 00:57:24Z fperez $"""
4 $Id: Release.py 979 2005-12-30 02:42:31Z fperez $"""
5 5
6 6 #*****************************************************************************
7 7 # Copyright (C) 2001-2005 Fernando Perez <fperez@colorado.edu>
@@ -22,9 +22,9 b" name = 'ipython'"
22 22 # because bdist_rpm does not accept dashes (an RPM) convention, and
23 23 # bdist_deb does not accept underscores (a Debian convention).
24 24
25 version = '0.6.16.svn'
25 version = '0.7.0.rc1'
26 26
27 revision = '$Revision: 951 $'
27 revision = '$Revision: 979 $'
28 28
29 29 description = "An enhanced interactive Python shell."
30 30
@@ -1,7 +1,6 b''
1 1 #!/bin/sh
2 2
3 3 # release test
4 PYVER=`python -V 2>&1 | awk '{print $2}' | awk -F '.' '{print $1$2}' `
5 4
6 5 # clean up build/dist directories
7 6 rm -rf ~/ipython/ipython/build/*
@@ -12,14 +11,12 b' cd ~/ipython/ipython'
12 11
13 12 ./setup.py sdist --formats=gztar
14 13
15 #./setup.py bdist_rpm --release=py$PYVER
16 14 python2.3 ./setup.py bdist_rpm --release=py23 --python=/usr/bin/python2.3
17 15 python2.4 ./setup.py bdist_rpm --release=py24 --python=/usr/bin/python2.4
18 16
19 17 # Call the windows build separately, so that the extra Windows scripts don't
20 18 # get pulled into Unix builds (setup.py has code which checks for
21 19 # bdist_wininst)
22 #./setup.py bdist_wininst --install-script=ipython_win_post_install.py
23 20
24 21 # For now, make the win32 installer with a hand-built 2.3.5 python, which is
25 22 # the only one that fixes a crash in the post-install phase.
General Comments 0
You need to be logged in to leave comments. Login now