summaryrefslogtreecommitdiff
path: root/numpy/distutils/misc_util.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: remove redundant open() modes and io.open() aliasMike Taves2022-10-291-2/+2
* MAINT: change subprocess arguments from Python>=3.7Mike Taves2022-10-271-1/+1
* Fix a potential variable misuse bugJingxuan He2022-06-151-1/+1
* MAINT: Python <3.8 related cleanupsBrigitta Sipőcz2022-05-231-6/+1
* MAINT: Python <3.7 related cleanupsBrigitta Sipőcz2022-05-231-2/+1
* Remove python <3.6 related thingsBrigitta Sipocz2022-05-171-4/+1
* ENH: provide a convenience function to replace npy_load_module (#20395)Matti Picus2021-11-191-8/+17
* BLD: Fix Macos Builds [wheel build]Thomas Li2021-11-171-1/+1
* [demo] how-to replacing numpy custom generation engine by raw C++serge-sans-paille2021-10-221-1/+14
* DOC: Typos found by codespellDimitri Papadopoulos2021-09-211-2/+2
* DEP: Deprecate quote_args (from numpy.distutils.misc_util)Mike Taves2021-09-021-1/+8
* DOC: Fix Unknown section warning when building docsmelissawm2021-07-261-41/+41
* BLD: Allow cygpath errors to propagate from cyg2win32.DWesl2021-07-231-6/+4
* STY: Wrap long lines in cyg2win32 docstring.DWesl2021-07-221-6/+8
* BLD: Change `cyg2win32` to use the `cygpath` utility.DWesl2021-07-221-4/+36
* review feedbackJerry Morrison2021-07-121-3/+3
* Update numpy/distutils/misc_util.py Jerry Morrison2021-07-121-1/+1
* code review iterationJerry Morrison2021-07-121-18/+19
* apply suggestions to the wheel caseJerry Morrison2021-07-121-7/+6
* fix ")" positionJerry Morrison2021-07-101-1/+1
* Document BLAS/LAPACK linking rulesJerry Morrison2021-07-091-0/+24
* ENH: SIMD architectures to show_configGanesh Kathiresan2021-05-281-0/+20
* BUG: Fix non-versioneer usesEric Larson2021-02-251-1/+1
* MAINT: Remove dummy_threadingKevin Sheppard2021-02-111-4/+1
* MAINT: regex char class improveTyler Reddy2020-12-281-3/+3
* ENH: Use versioneer to manage numpy versions.Charles Harris2020-12-081-0/+7
* BLD: Use importlib to find numpy root directory in distutilsDustin Spicuzza2020-11-071-3/+3
* MAINT: valid doctest for config_py function show() (#17621)Hassan Kibirige2020-10-261-0/+1
* MAINT: change "for line in open()" to "with open() as f: ..." in numpy/distut...jakobjakobson132020-08-111-9/+10
* DEP: Remove deprecated python function 'file()'marload2020-07-141-1/+1
* MAINT: use list-based APIs to call subprocesses (#15714)Sebastian Berg2020-03-071-3/+2
* DOC: distutils: Add a docstring to show_config().Warren Weckesser2020-01-251-0/+37
* MAINT/DOC: Remove use of old Python __builtin__, now known as builtinsMike Taves2020-01-241-1/+0
* MAINT: Replace basestring with str.Charles Harris2020-01-231-2/+1
* MAINT: remove internal functions required to handle Python2/3 logicMike Taves2020-01-221-12/+2
* [MAINT] Cleanup python2 sys.version checksSeth Troisi2020-01-201-4/+1
* Merge pull request #15248 from eric-wieser/avoid-exc_infoCharles Harris2020-01-051-4/+2
|\
| * MAINT: cleanup use of sys.exc_infoEric Wieser2020-01-051-4/+2
* | MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-2/+2
* | MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
|/
* MAINT: Added Python3.8 branch to dll lib discoveryIlhan Polat2019-11-241-2/+5
* DOC,BUG: remove section header, add redundant text to leave a blank linemattip2019-09-161-2/+0
* ENH: Allow NPY_PKG_CONFIG_PATH environment variable overrideEsben Haabendal2019-09-131-1/+51
* MAINT: distutils: Add newline at the end of printed warnings.Warren Weckesser2019-09-111-1/+1
* MAINT: fix 'in' -> 'is' typoThomas A Caswell2019-06-141-1/+1
* MAINT: Use textwrap.dedent for multiline stringsEric Wieser2019-06-121-26/+26
* MAINT: Use with statements for opening files in distutilsEric Wieser2019-03-011-40/+33
* BUG: Fixes to numpy.distutils.Configuration.get_version (#13056)Eric Wieser2019-03-011-33/+22
* MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#1...Roman Yurchak2018-12-061-2/+0
* Merge pull request #12209 from anntzer/get_build_archRalf Gommers2018-10-201-1/+6
|\