[Numpy-svn] r8272 - branches/1.4.x

numpy-svn at scipy.org numpy-svn at scipy.org
Wed Mar 3 19:45:44 EST 2010


Author: cdavid
Date: 2010-03-03 18:45:44 -0600 (Wed, 03 Mar 2010)
New Revision: 8272

Modified:
   branches/1.4.x/pavement.py
Log:
BUG: fix paver execution on windows 7 for python 2.6.

(cherry picked from commit 68fa6c03d92d8fa42ec9c4978c0a8e577775f292)

Modified: branches/1.4.x/pavement.py
===================================================================
--- branches/1.4.x/pavement.py	2010-03-04 00:44:51 UTC (rev 8271)
+++ branches/1.4.x/pavement.py	2010-03-04 00:45:44 UTC (rev 8272)
@@ -128,7 +128,9 @@
         "2.6": ["C:\Python26\python.exe"],
         "2.5": ["C:\Python25\python.exe"],
     }
-    WINDOWS_ENV = {}
+    # XXX: find out which env variable is necessary to avoid the pb with python
+    # 2.6 and random module when importing tempfile
+    WINDOWS_ENV = os.environ
     MAKENSIS = ["makensis"]
 else:
     WINDOWS_PYTHON = {




More information about the Numpy-svn mailing list