[Scipy-svn] r5510 - branches/0.7.x/tools/win32/build_scripts

scipy-svn at scipy.org scipy-svn at scipy.org
Thu Jan 22 11:05:43 EST 2009


Author: cdavid
Date: 2009-01-22 10:05:37 -0600 (Thu, 22 Jan 2009)
New Revision: 5510

Modified:
   branches/0.7.x/tools/win32/build_scripts/lib.py
Log:
Forgot to add rc info to verstring.

Modified: branches/0.7.x/tools/win32/build_scripts/lib.py
===================================================================
--- branches/0.7.x/tools/win32/build_scripts/lib.py	2009-01-22 15:53:25 UTC (rev 5509)
+++ branches/0.7.x/tools/win32/build_scripts/lib.py	2009-01-22 16:05:37 UTC (rev 5510)
@@ -32,6 +32,9 @@
     version, rc, isdev = parse_verstring(fid.readlines())
 
     verstr = ".".join([str(i) for i in version])
+    if rc > 0:
+        verstr += "rc%d" % rc
+
     if isdev:
         verstr += ".dev"
         verstr += get_svn_version(src_root)




More information about the Scipy-svn mailing list