##// END OF EJS Templates
Update version strings to use only dots as separators, since either - or _...
fperez -
Show More
@@ -1,7 +1,7
1 1 # -*- coding: utf-8 -*-
2 2 """Release data for the IPython project.
3 3
4 $Id: Release.py 634 2005-07-17 01:56:45Z tzanko $"""
4 $Id: Release.py 750 2005-08-24 17:36:16Z fperez $"""
5 5
6 6 #*****************************************************************************
7 7 # Copyright (C) 2001-2005 Fernando Perez <fperez@colorado.edu>
@@ -17,9 +17,12 $Id: Release.py 634 2005-07-17 01:56:45Z tzanko $"""
17 17 # the tarballs and RPMs made by distutils, so it's best to lowercase it.
18 18 name = 'ipython'
19 19
20 # For versions with substrings (like 0.6.7_rc1), use _ but NOT -, since
21 # bdist_rpm chokes on dashes in the version string.
22 version = '0.6.16_svn'
20 # For versions with substrings (like 0.6.16.svn), use an extra . to separate
21 # the new substring. We have to avoid using either dashes or underscores,
22 # because bdist_rpm does not accept dashes (an RPM) convention, and
23 # bdist_deb does not accept underscores (a Debian convention).
24
25 version = '0.6.16.svn'
23 26
24 27 description = "An enhanced interactive Python shell."
25 28
@@ -1,5 +1,7
1 1 2005-08-19 Fernando Perez <Fernando.Perez@colorado.edu>
2 2
3 * tools/ipsvnc (svnversion): fix svnversion capture.
4
3 5 * IPython/iplib.py (InteractiveShell.__init__): Add has_readline
4 6 attribute to self, which was missing. Before, it was set by a
5 7 routine which in certain cases wasn't being called, so the
@@ -46,7 +46,7 os.system('svn commit %s' % svnargs)
46 46 svntime = time.asctime()
47 47 print 'Getting SVN log and version info...'
48 48 svnstatus = commands.getoutput('svn log -r HEAD')
49 svnversion = commands.getoutput('svnversion .')
49 svnversion = commands.getoutput('svnversion .').split(':')[-1]
50 50
51 51 # Confirm with user (trying to get the status from the svn commit blocks
52 52 # silently, I don't care to debug it)
General Comments 0
You need to be logged in to leave comments. Login now