Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BLD: Fixed ARGOUTVIEWM memory deallocation. | leakec | 2020-09-29 | 1 | -18/+18 |
| | | | | Closes #17398 | ||||
* | MAINT: Replace PyString_Check with PyBytes_Check in numpy.i. | Charles Harris | 2020-09-10 | 1 | -1/+1 |
| | | | | | | Replace the npy_3kcompat PyString_Check with its definition. This is done separately for the tools/swig/numpy.i file as it might be problematic. | ||||
* | DEV: Add tool to help speed up Travis CI | Hugo | 2020-09-08 | 1 | -0/+287 |
| | |||||
* | MAINT, DOC: move informational files from numpy.doc.*.py to their *.rst ↵ | Matti Picus | 2020-09-02 | 1 | -2/+10 |
| | | | | | | | | | counterparts (#17222) * DOC: redistribute docstring-only content from numpy/doc * DOC: post-transition clean-up * DOC, MAINT: reskip doctests, fix a few easy ones | ||||
* | DEP: lib: Remove the deprecated financial functions. (#17067) | Warren Weckesser | 2020-08-12 | 1 | -11/+0 |
| | | | | | | | | | As explained in NEP 32, the financial functions are to be removed from version 1.20. They are now replaced with module level `__getattr__` to give a useful error message for those surprised by the `AttributeError`. This only works for Python 3.7+, but it is expected that by the 1.20 release Python 3.6 will not be supported. | ||||
* | MAINT: Remove obsolete conversion to set (#17063) | jakobjakobson13 | 2020-08-11 | 1 | -2/+2 |
| | | | compare already returns sets, so conversion is redundant | ||||
* | BLD: pin setuptools<49.2.0 | mattip | 2020-08-03 | 1 | -1/+1 |
| | |||||
* | BLD: update OpenBLAS build | mattip | 2020-07-24 | 1 | -8/+9 |
| | |||||
* | MAINT,BLD: pin setuptools and refactor where to find it | mattip | 2020-07-14 | 2 | -3/+3 |
| | |||||
* | BLD: update openblas hashes | mattip | 2020-07-13 | 1 | -20/+24 |
| | |||||
* | BLD: temporarily disable OpenBLAS hash checks | mattip | 2020-07-12 | 1 | -1/+1 |
| | |||||
* | TST: Upgrade to Python 3.8 for DEBUG testing. | Charles Harris | 2020-07-11 | 1 | -0/+1 |
| | | | | | | | The DEBUG test requires the debug version of Python which is only available for the default Python of the Ubuntu version being used. The latest available LTS version available for TravisCI looks to be Focal Fossa (20.04 LTS) which supports Python 3.8. Give it a shot. | ||||
* | BLD: update cython to 0.29.21 | mattip | 2020-07-10 | 1 | -2/+2 |
| | |||||
* | Merge pull request #16629 from person142/functions-missing-types | Charles Harris | 2020-07-06 | 1 | -0/+140 |
|\ | | | | | ENH: add tool to find functions missing types | ||||
| * | MAINT: add `np.alen` to the types exclude list | Josh Wilson | 2020-06-20 | 1 | -0/+1 |
| | | |||||
| * | DOC: add docstring to tool for finding functions missing types | Josh Wilson | 2020-06-18 | 1 | -1/+11 |
| | | |||||
| * | ENH: add tool to find functions missing types | Josh Wilson | 2020-06-17 | 1 | -0/+129 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes https://github.com/numpy/numpy/issues/16625. This is ported from the numpy-stubs here: https://github.com/numpy/numpy-stubs/blob/master/runtests.py#L94 You run ``` ./tools/functions_missing_types.py <module> ``` and it will give you a list of things in that module that don't have type annotations. | ||||
* | | STY: flake8 fixes | mattip | 2020-07-05 | 1 | -51/+96 |
| | | |||||
* | | BLD: add manylinux1 OpenBlAS 0.3.10 hashes and test for them | mattip | 2020-07-04 | 1 | -2/+15 |
|/ | |||||
* | BLD: upgrade to OpenBLAS0.3.10 | mattip | 2020-06-16 | 1 | -1/+17 |
| | |||||
* | BLD: use OpenBLAS 0.3.10 | mattip | 2020-06-15 | 1 | -18/+22 |
| | |||||
* | MAINT: Stop uploading wheels to Rackspace. | Charles Harris | 2020-05-26 | 1 | -13/+0 |
| | | | | | | | PR #6768 introduced the uploading of wheels built during travisCI testing to a Rackspace account. We are moving away from Rackspace and already produce more complete sets of wheels for development testing on a weekly schedule. Consequently those wheels are not longer useful. | ||||
* | Defer ctypes import in generated _distributor_init.py | Steve Dower | 2020-05-26 | 1 | -7/+7 |
| | |||||
* | MAINT: Streamline download-wheels. | Charles Harris | 2020-05-24 | 1 | -4/+4 |
| | | | | | | - Makes specifying name patterns simpler - Makes name pattern reject dev versions unless specified. - Makes progress printing aligned and more concise. | ||||
* | MAINT: Cleanup 'tools/download-wheels.py' (#16329) | Anirudh Subramanian | 2020-05-22 | 1 | -3/+10 |
| | | | | | | | | | | | | | | | | | * ENH: Create download dir if not present for download-wheels * TST: Add tests for download-wheels * MAINT: use exist_ok=True for os.makedirs in download-wheels Co-authored-by: Ross Barnowski <rossbar@berkeley.edu> * MAINT: Remove test for download_wheels * MAINT: Remove directory creation and error if dir not present * MAINT: Print total files download and remove err for 0 search results Co-authored-by: Ross Barnowski <rossbar@berkeley.edu> | ||||
* | BUG: Fix tools/download-wheels.py. | Charles Harris | 2020-05-18 | 1 | -8/+9 |
| | | | | | `tools/download-wheels` was downloading an html page rather than the binary wheel file. | ||||
* | Merge pull request #16269 from tbm/typo | Matti Picus | 2020-05-17 | 1 | -1/+1 |
|\ | | | | | DOC: Fix typos and cosmetic issues | ||||
| * | DOC: Fix typos and cosmetic issues | Martin Michlmayr | 2020-05-17 | 1 | -1/+1 |
| | | |||||
* | | ENH: Add tool for downloading release wheels from Anaconda. | Charles Harris | 2020-05-16 | 1 | -0/+79 |
|/ | | | | | | | | This is a simplified version of terryfy::wheel-uploader that has two advantages over the original: - It works with Anaconda where our wheels are now stored. - It is simplified to match the NumPY workflow. | ||||
* | ENH: add manylinux1 openblas hashes | mattip | 2020-05-13 | 1 | -0/+6 |
| | |||||
* | ENH: add win32 hash | mattip | 2020-05-12 | 1 | -0/+1 |
| | |||||
* | ENH: backport scipy changes to openblas download script | mattip | 2020-05-12 | 3 | -18/+56 |
| | |||||
* | BUG: use default | mattip | 2020-05-06 | 1 | -1/+1 |
| | |||||
* | MAINT: Fix '2104' typo, should be '2014'. | Charles Harris | 2020-05-06 | 1 | -1/+1 |
| | |||||
* | ENH: allow choosing which manylinux artifact to download | mattip | 2020-05-06 | 1 | -15/+19 |
| | |||||
* | BLD: Add :doc: to whitelisted roles in refguide_check. | Ross Barnowski | 2020-05-05 | 1 | -1/+1 |
| | | | | | | The refguide_check (which currently runs as part of the CI) fails on :doc: roles in the documentation. Added :doc: to the set of whitelisted role names as it is a valid role in sphinx. | ||||
* | TST: use latest released PyPy instead of nightly builds | mattip | 2020-04-28 | 1 | -4/+4 |
| | |||||
* | TST: use draft OpenBLAS build | mattip | 2020-03-30 | 1 | -1/+2 |
| | |||||
* | DOC: fix remaining doc files for refguide_check (#15720) | Pierre de Buyl | 2020-03-26 | 1 | -0/+3 |
| | | | | | * DOC: skip f2py fortran and arrays.nditer cython tests for refguide_check * DOC: fix formatting of doc tests and improper use of nditer | ||||
* | MAINT: CI: Run 'apt-get update' in tools/pypy-test.sh | Warren Weckesser | 2020-03-15 | 1 | -0/+1 |
| | | | | | | | Run 'apt-get update' before 'apt-get install ...' This should fix the failure to build PyPy in the Linux_PyPy3 azure pipelines CI test. | ||||
* | Fix swig tests | Mathieu Lamarre | 2020-03-13 | 4 | -53/+59 |
| | | | | | resize typemap issue python 3 bytes vs str issue | ||||
* | Merge pull request #15702 from mwtoews/optparse | Charles Harris | 2020-03-08 | 1 | -24/+27 |
|\ | | | | | MAINT: Replace optparse with argparse for 'doc' and 'tools' scripts | ||||
| * | MAINT: replace optparse with argparse for 'doc' and 'tools' scripts | Mike Taves | 2020-03-09 | 1 | -24/+27 |
| | | |||||
* | | TST: always use 'python -mpip' not 'pip' | mattip | 2020-03-06 | 1 | -3/+2 |
| | | |||||
* | | convert shebang from python to python3 (#15687) | Changqing Li | 2020-03-04 | 15 | -15/+15 |
|/ | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||||
* | Merge pull request #15653 from mattip/openblas0.3.7 | Charles Harris | 2020-03-02 | 3 | -8/+11 |
|\ | | | | | BLD: update OpenBLAS to pre-0.3.9 version | ||||
| * | BLD: consolidate openblas verison check to be self-contained | mattip | 2020-02-27 | 3 | -7/+10 |
| | | |||||
| * | BLD: update OpenBLAS to pre-0.3.9 version | mattip | 2020-02-27 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #12646 from shoyer/refguide-check-exceptions | Matti Picus | 2020-02-28 | 1 | -1/+1 |
|\ \ | |/ |/| | TST: check exception details in refguide_check.py | ||||
| * | TST: check exception details in refguide_check.py | Stephan Hoyer | 2019-01-01 | 1 | -1/+1 |
| | | | | | | | | xref GH-12548 |