From 0132351b0073f464060e1bac8b0595198c31a4e9 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Thu, 4 Mar 2010 00:44:51 +0000 Subject: BUG: fix paver execution on windows 7 for python 2.6. --- pavement.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 = { -- cgit v1.2.1