diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-02-25 15:15:35 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2017-02-25 15:15:35 -0700 |
commit | 2bf1920ce2861ed48dd1b3ebef7cace65fe5f92d (patch) | |
tree | 08aca2731b9606f8ed2fbc9377b7641e868243fb /tools/win32build/doall.py | |
parent | 309e450230f85fcea447047bcb319def858b7b10 (diff) | |
download | numpy-2bf1920ce2861ed48dd1b3ebef7cace65fe5f92d.tar.gz |
MAINT: Remove numpy-macosx-installer and win32build directories.
The scripts in those directories were used to build windows superpacks
and mac dmg files. We now release wheels for both of those platforms.
There is little overhead maintaining these scripts, but they are clutter
and will eventually bit rot if not used for current systems. So remove
them.
Diffstat (limited to 'tools/win32build/doall.py')
-rw-r--r-- | tools/win32build/doall.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py deleted file mode 100644 index 0bf77306e..000000000 --- a/tools/win32build/doall.py +++ /dev/null @@ -1,27 +0,0 @@ -from __future__ import division, print_function - -import subprocess -import os - -if __name__ == '__main__': - from optparse import OptionParser - parser = OptionParser() - parser.add_option("-p", "--pyver", dest="pyver", - help = "Python version (2.4, 2.5, etc...)") - - opts, args = parser.parse_args() - pyver = opts.pyver - - if not pyver: - pyver = "2.5" - - # Bootstrap - subprocess.check_call(['python', 'prepare_bootstrap.py', '-p', pyver]) - - # Build binaries - subprocess.check_call(['python', 'build.py', '-p', pyver], - cwd = 'bootstrap-%s' % pyver) - - # Build installer using nsis - subprocess.check_call(['makensis', 'numpy-superinstaller.nsi'], - cwd = 'bootstrap-%s' % pyver) |