diff options
author | David Cournapeau <cournape@gmail.com> | 2010-03-04 00:44:51 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2010-03-04 00:44:51 +0000 |
commit | 0132351b0073f464060e1bac8b0595198c31a4e9 (patch) | |
tree | 82dfb8496fa63fa60e1df48a33c75aa37cb22838 /pavement.py | |
parent | 29426cb08b07f74b55461a5bf0769f534527b7ba (diff) | |
download | numpy-0132351b0073f464060e1bac8b0595198c31a4e9.tar.gz |
BUG: fix paver execution on windows 7 for python 2.6.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index f6c143309..41134b324 100644 --- a/pavement.py +++ b/pavement.py @@ -128,7 +128,9 @@ elif sys.platform == "win32": "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 = { |