summaryrefslogtreecommitdiff
path: root/tools/win32build/doall.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-08-01 06:04:24 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-08-01 06:04:24 +0000
commit12cfaa0bf758a78d854e917f357ac2913d4e73c6 (patch)
tree321151ba8c2c17859b4d6e0f7ab6d207d66c3a2c /tools/win32build/doall.py
parent1006c2275077597ef9c510ccf8e0bee44ed93d71 (diff)
downloadpython-numpy-12cfaa0bf758a78d854e917f357ac2913d4e73c6.tar.gz
python-numpy-12cfaa0bf758a78d854e917f357ac2913d4e73c6.tar.bz2
python-numpy-12cfaa0bf758a78d854e917f357ac2913d4e73c6.zip
Handle python version in prepare_bootstrap script.
Diffstat (limited to 'tools/win32build/doall.py')
-rw-r--r--tools/win32build/doall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py
index 33a374c72..19009d42b 100644
--- a/tools/win32build/doall.py
+++ b/tools/win32build/doall.py
@@ -4,7 +4,7 @@ import os
PYVER = "2.5"
# Bootstrap
-subprocess.check_call(['python', 'prepare_bootstrap.py'])
+subprocess.check_call(['python', 'prepare_bootstrap.py', '-p', PYVER])
# Build binaries
subprocess.check_call(['python', 'build.py', '-p', PYVER], cwd = 'bootstrap-%s' % PYVER)