summaryrefslogtreecommitdiff
path: root/tools/win32build
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Remove numpy-macosx-installer and win32build directories.Charles Harris2017-02-2516-2025/+0
| | | | | | | | 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.
* MAINT: Fix deprecated escape sequences in tools/Charles Harris2017-02-251-3/+3
| | | | | | Fix the escape sequences deprecated in Python 3.6 found in the tools directory. Note that this does not include the files in tools/swig/tests which are not even Python 3 compatible at this point.
* DOC: change Numpy to NumPy in remaining filesPierre de Buyl2016-09-061-1/+1
| | | | the files in doc/ and numpy/ were covered in previous commits
* DOC: Fix more typos in docs and comments.Dongjoon Hyun2016-02-252-3/+3
|
* MAINT: Remove commented out code blocksgfyoung2015-12-201-9/+0
|
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-3/+3
| | | | Closes gh-6863.
* MAINT: Include from __future__ boilerplate in some files missing it.Charles Harris2015-12-051-0/+2
| | | | | Some newer *.py files are missing the `from __future__` boilerplate that helps assure Python2 and Python3 compatibility.
* BLD: add a simple python file to build cpucaps.dllJulian Taylor2014-06-042-0/+17
| | | | | | using scons seems to fail with wine 1.6, but one only needs to run three commands so its simpler to just put these into a script instead of trying to debug scons.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-2/+2
| | | | Now is as good a time as any with open PR's at a low.
* 2to3: Apply `print` fixer.Charles Harris2013-04-064-12/+12
| | | | | | | Add `print_function` to all `from __future__ import ...` statements and use the python3 print function syntax everywhere. Closes #3078.
* 2to3: Apply `imports` fixer.Charles Harris2013-04-021-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The `imports` fixer deals with the standard packages that have been renamed, removed, or methods that have moved. cPickle -- removed, use pickle commands -- removed, getoutput, getstatusoutput moved to subprocess urlparse -- removed, urlparse moved to urllib.parse cStringIO -- removed, use StringIO or io.StringIO copy_reg -- renamed copyreg _winreg -- renamed winreg ConfigParser -- renamed configparser __builtin__ -- renamed builtins In the case of `cPickle`, it is imported as `pickle` when python < 3 and performance may be a consideration, but otherwise plain old `pickle` is used. Dealing with `StringIO` is a bit tricky. There is an `io.StringIO` function in the `io` module, available since Python 2.6, but it expects unicode whereas `StringIO.StringIO` expects ascii. The Python 3 equivalent is then `io.BytesIO`. What I have done here is used BytesIO for anything that is emulating a file for testing purposes. That is more explicit than using a redefined StringIO as was done before we dropped support for Python 2.4 and 2.5. Closes #3180.
* 2to3: Add `from __future__ import ...` to some files that were missed.Charles Harris2013-03-284-5/+14
| | | | | | | With the exception of numpy/distutils/tests/test_exec_command.py, all of these files are script files in tools/osxbuild and tools/win32build. The import in the script files omits `absolute_import` as they are not part of a package.
* 2to3: Remove xreadlines and replace f.readlines() by f where valid.Charles Harris2013-03-051-1/+1
| | | | | | | | | | An open file `f` has been an iterator since python2.3 and `f.xreadlines()` is no longer needed, so replace it with `f`. Also replace `f.readlines()` with `f` where an iterator will do. The replacement of `f.readlines()` is not critical because it is a list in both python2 and python3, but the code is a bit cleaner. Closes #3093
* 2to3: Updata `except Exception, msg:` syntax in files not in numpy/ .Charles Harris2013-02-272-2/+2
| | | | This should finish the updating of the exception syntax.
* add .gitattributes and fix line endingsDarren Dale2010-10-311-183/+183
|
* REL: re-enable SSE2 binary in the superpack.David Cournapeau2009-11-301-19/+19
|
* REL: only build nosse and sse3 binaries.David Cournapeau2009-11-221-20/+20
|
* Add the x86analysis.py script to check instructions set in win binaries.David Cournapeau2009-03-281-0/+161
|
* Remove python 2.3, add 2.6 for build scripts on windows.David Cournapeau2009-03-121-1/+1
|
* Add script to build msvcrt90 on mingw-w64.David Cournapeau2009-02-262-0/+842
|
* Add /arch option to superpack installer to override detected arch.David Cournapeau2008-12-041-0/+62
|
* Update doall script: take the python version to build binaries from the ↵David Cournapeau2008-10-031-7/+19
| | | | command line instead of global variable.
* reindenting prior to releaseJarrod Millman2008-09-022-3/+3
|
* Fix typo in build script for win32.David Cournapeau2008-08-131-1/+1
|
* Handle MSI builds + python 2.3 for win32 build script.David Cournapeau2008-08-021-4/+23
|
* Handle python version in prepare_bootstrap script.David Cournapeau2008-08-011-1/+1
|
* Set build scripts to unix ff.David Cournapeau2008-07-283-194/+194
|
* Remove unused nsis scripts.David Cournapeau2008-07-282-240/+0
|
* prepare_bootstrap script now handles pyver correctly, and can be set from ↵David Cournapeau2008-07-281-2/+13
| | | | command line.
* Update readme for win32build tools.David Cournapeau2008-07-281-9/+64
|
* Fix path issue in nsis script.David Cournapeau2008-07-281-3/+3
|
* Add top script to generate binaries from scratch.David Cournapeau2008-07-281-0/+13
|
* Bootstrap script now works from scratch.David Cournapeau2008-07-281-7/+34
|
* Set LZMA solid compressor.David Cournapeau2008-07-281-0/+1
|
* Build all ARCHS if arch arg not given to build script.David Cournapeau2008-07-281-5/+6
|
* Uncomment bootstrap tasks.David Cournapeau2008-07-281-3/+3
|
* Add nsis template, and bootstrap script, to bootstrap win32 binary build.David Cournapeau2008-07-282-0/+191
|
* Use OptionParser for win32 build script.David Cournapeau2008-07-281-13/+19
|
* Add cpu_caps nsis plugin sources (to detect SSE in nsis scripts).David Cournapeau2008-07-263-0/+244
|
* Add cpuid + nsis scripts to build win32 installer.David Cournapeau2008-05-267-0/+487
|
* Update build script.David Cournapeau2008-05-201-4/+16
|
* - win32 build script is now functional. Still does not handle svn version,David Cournapeau2008-05-201-43/+67
| | | | | | though - Fix indentation on the win32 build script.
* Add a tools directory, to hold various things related to build, etc... Add a ↵David Cournapeau2008-05-201-0/+74
python script to build win32 binaries.