[Numpy-svn] r8603 - branches/1.5.x

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Aug 5 06:25:13 EDT 2010


Author: rgommers
Date: 2010-08-05 05:25:13 -0500 (Thu, 05 Aug 2010)
New Revision: 8603

Modified:
   branches/1.5.x/pavement.py
Log:
3K: (backport of r8601) copy built installers from build/py3k/dist instead of dist/.

Modified: branches/1.5.x/pavement.py
===================================================================
--- branches/1.5.x/pavement.py	2010-08-05 10:24:59 UTC (rev 8602)
+++ branches/1.5.x/pavement.py	2010-08-05 10:25:13 UTC (rev 8603)
@@ -202,7 +202,10 @@
     pyver = options.python_version
     def copy_bdist(arch):
         # Copy the wininst in dist into the release directory
-        source = os.path.join('dist', wininst_name(pyver))
+        if pyver[0] >= 3:
+            source = os.path.join('build', 'py3k', 'dist', wininst_name(pyver))
+        else:
+            source = os.path.join('dist', wininst_name(pyver))
         target = os.path.join(SUPERPACK_BINDIR, internal_wininst_name(arch))
         if os.path.exists(target):
             os.remove(target)




More information about the Numpy-svn mailing list