diff options
author | David Cournapeau <cournape@gmail.com> | 2008-07-28 02:22:13 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-07-28 02:22:13 +0000 |
commit | 8a946f60dfb7b3936c3aea98dfcfcdf3c986a702 (patch) | |
tree | 5f6dfa368b34b7cadd649c2e4b1019de6716e365 /tools/win32build/prepare_bootstrap.py | |
parent | c90b955c14395408069b5e382b307c18bb98c249 (diff) | |
download | python-numpy-8a946f60dfb7b3936c3aea98dfcfcdf3c986a702.tar.gz python-numpy-8a946f60dfb7b3936c3aea98dfcfcdf3c986a702.tar.bz2 python-numpy-8a946f60dfb7b3936c3aea98dfcfcdf3c986a702.zip |
Uncomment bootstrap tasks.
Diffstat (limited to 'tools/win32build/prepare_bootstrap.py')
-rw-r--r-- | tools/win32build/prepare_bootstrap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/win32build/prepare_bootstrap.py b/tools/win32build/prepare_bootstrap.py index 81d27714f..3f8db2446 100644 --- a/tools/win32build/prepare_bootstrap.py +++ b/tools/win32build/prepare_bootstrap.py @@ -61,10 +61,10 @@ def prepare_bootstrap(pyver = "2.5"): shutil.rmtree(bootstrap) os.makedirs(bootstrap) - #build_sdist() - #prepare_numpy_sources(bootstrap) + build_sdist() + prepare_numpy_sources(bootstrap) - #shutil.copy('build.py', bootstrap) + shutil.copy('build.py', bootstrap) prepare_nsis_script(bootstrap, pyver, get_numpy_version()) if __name__ == '__main__': |