[Scipy-svn] r4716 - trunk/tools/win32/build_scripts

scipy-svn at scipy.org scipy-svn at scipy.org
Tue Sep 9 13:18:25 EDT 2008


Author: cdavid
Date: 2008-09-09 12:17:57 -0500 (Tue, 09 Sep 2008)
New Revision: 4716

Modified:
   trunk/tools/win32/build_scripts/build.py
Log:
Remove numpy references in scipy build script.


Modified: trunk/tools/win32/build_scripts/build.py
===================================================================
--- trunk/tools/win32/build_scripts/build.py	2008-09-09 17:17:02 UTC (rev 4715)
+++ trunk/tools/win32/build_scripts/build.py	2008-09-09 17:17:57 UTC (rev 4716)
@@ -91,7 +91,7 @@
     f.close()
 
 def build(arch, pyver):
-    print "Building numpy binary for python %s, arch is %s" % (get_python_exec(pyver), arch)
+    print "Building scipy binary for python %s, arch is %s" % (get_python_exec(pyver), arch)
     get_clean()
     write_site_cfg(arch)
 
@@ -132,7 +132,7 @@
         ext = '.msi'
     else:
         ext = '.exe'
-    return "numpy-%s-%s%s" % (get_scipy_version(), arch, ext)
+    return "scipy-%s-%s%s" % (get_scipy_version(), arch, ext)
 
 def get_windist_exec(pyver):
     """Return the name of the installer built by wininst command."""
@@ -142,7 +142,7 @@
         ext = '.msi'
     else:
         ext = '.exe'
-    name = "numpy-%s.win32-py%s%s" % (get_numpy_version(ROOT), pyver, ext)
+    name = "scipy-%s.win32-py%s%s" % (get_scipy_version(ROOT), pyver, ext)
     return name
 
 if __name__ == '__main__':




More information about the Scipy-svn mailing list