From 3d22ee41535cbb73379832ba099a08aebd40cd1d 2006-11-29 08:01:37 From: vivainio Date: 2006-11-29 08:01:37 Subject: [PATCH] inc revnum in Release.py, strip M from revnum --- diff --git a/IPython/Release.py b/IPython/Release.py index 25d6086..7dd13e1 100644 --- a/IPython/Release.py +++ b/IPython/Release.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Release data for the IPython project. -$Id: Release.py 1940 2006-11-26 22:11:47Z vivainio $""" +$Id: Release.py 1953 2006-11-29 08:01:37Z vivainio $""" #***************************************************************************** # Copyright (C) 2001-2006 Fernando Perez @@ -22,11 +22,11 @@ name = 'ipython' # because bdist_rpm does not accept dashes (an RPM) convention, and # bdist_deb does not accept underscores (a Debian convention). -revision = '1939' +revision = '1952M' #version = '0.7.3.svn' -version = '0.7.3.svn.r' + revision +version = '0.7.3.svn.r' + revision.rstrip('M') description = "An enhanced interactive Python shell."