##// END OF EJS Templates
with -pylab_import_all, put all names to user_config_ns in order to not clutter %whos
with -pylab_import_all, put all names to user_config_ns in order to not clutter %whos

File last commit:

r988:2f09c2ab
r1048:200c756c
Show More
update_revnum.py
14 lines | 353 B | text/x-python | PythonLexer
#!/usr/bin/env python
""" Change the revision number in Release.py """
import os
import re
rev = os.popen('svnversion ..').read().strip()
print "current rev is",rev
assert ':' not in rev
rfile = open('../IPython/Release.py').read()
newcont = re.sub(r'revision\s*=.*', "revision = '%s'" % rev, rfile)
open('../IPython/Release.py','w').write(newcont)