##// END OF EJS Templates
tools/update_revnum: Change to bzr revision numbering.
Ville M. Vainio -
Show More
@@ -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 revision = '3001'
25 revision = '45'
26 26
27 version = '0.8.3.svn.r' + revision.rstrip('M')
27 version = '0.8.3.bzr.r' + revision
28 28
29 29 description = "An enhanced interactive Python shell."
30 30
@@ -4,7 +4,7 b''
4 4 import os
5 5 import re
6 6
7 rev = os.popen('svnversion ..').read().strip()
7 rev = os.popen('bzr revno').read().strip()
8 8
9 9 print "current rev is",rev
10 10 assert ':' not in rev
General Comments 0
You need to be logged in to leave comments. Login now