summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #20801 from tkilias/backport-18989maintenance/1.19.xSebastian Berg2022-01-121-7/+8
|\ | | | | BUG: fix potential buffer overflow, backport to 1.19.* (#18939)
| * BUG: fix potential buffer overflow(#18939)Torsten Kilias2022-01-111-7/+8
|/
* REL: prepare 1.19.x for further developmentCharles Harris2021-01-054-3/+49
|
* REL: NumPy 1.19.5 release.v1.19.5Charles Harris2021-01-041-1/+1
|
* Merge pull request #18114 from charris/maintenance/1.19.xCharles Harris2021-01-042-0/+68
|\ | | | | REL: Prepare for the NumPy 1.19.5 release.
| * REL: Prepare for the NumPy 1.19.5 release.Charles Harris2021-01-042-0/+68
|/ | | | | - Create the 1.19.5-changelog.rst - Update the 1.19.5-notes.rst
* Merge pull request #18036 from charris/backport-18030Charles Harris2020-12-192-2/+15
|\ | | | | BUG: make a variable volatile to work around clang compiler bug
| * BUG: make a variable volatile to work around clang compiler bug (#18030)Raghuveer Devulapalli2020-12-192-2/+15
| | | | | | | | | | | | | | | | | | * BUG: make a variable volatile to work around clang compiler bug * Adding comments for relevance * TST: Adding test to check for no overflow warnings in log Fixes #18005
* | Merge pull request #18026 from charris/backport-18011Charles Harris2020-12-181-80/+2
|\ \ | |/ |/| BLD: update to OpenBLAS 0.3.13
| * BLD: update to OpenBLAS 0.3.13mattip2020-12-181-80/+2
|/
* Merge pull request #17786 from seberg/bad-array-recursion-errorCharles Harris2020-12-172-5/+65
|\ | | | | BUG: Raise recursion error during dimension discovery
| * BUG: Raise recursion and memory error during dimension discoverySebastian Berg2020-12-172-5/+65
| | | | | | | | | | | | | | | | | | This mitigates gh-17785 on the 1.19.x branch. Note that the actual problem seems to have more layers, so that the bad code will still cause crashes on certain systems or call contexts (I am not sure). Pre 1.19.x did not check for `__array__` in the dimension discovery code, so was unaffected by the issue in gh-17785.
* | Merge pull request #17924 from charris/backport-17759Charles Harris2020-12-041-58/+139
|\ \ | | | | | | BLD: use BUFFERSIZE=20 in OpenBLAS
| * | BLD: use BUFFERSIZE=20 in OpenBLASCharles Harris2020-12-041-58/+139
| |/
* | Merge pull request #17919 from charris/backport-17377Charles Harris2020-12-043-3/+17
|\ \ | | | | | | BUG: ensure _UFuncNoLoopError can be pickled
| * | BUG: ensure _UFuncNoLoopError can be pickled (#17377)bernie gray2020-12-043-3/+17
| |/ | | | | | | | | | | | | | | | | * BUG: ensure _UFuncNoLoopError can be pickled; closes #16490 * update quickstart.rst * add round trip pickle test * move _ArrayMemoryError picking test
* | Merge pull request #17918 from charris/backport-17907Charles Harris2020-12-041-1/+1
|\ \ | | | | | | Fix AttributeError: 'bool' object has no attribute 'ndim'
| * | Fix AttributeError: 'bool' object has no attribute 'ndim'Christoph Gohlke2020-12-041-1/+1
| |/
* | Merge pull request #17917 from charris/backport-17832Charles Harris2020-12-042-9/+40
|\ \ | |/ |/| BUG: Fix subarray dtype used with too large count in fromfile
| * BUG: Fix subarray dtype used with too large count in fromfileSebastian Berg2020-12-042-9/+40
|/ | | | | | This also affects fromtext, although only in the deprecated path. Closes gh-17819
* Merge pull request #17774 from charris/bacport-17645Charles Harris2020-11-142-1/+6
|\ | | | | BUG: fix np.timedelta64('nat').__format__ throwing an exception
| * BUG: fix np.timedelta64('nat').__format__ throwing an exceptionVeniamin Petrenko2020-11-142-1/+6
| | | | | | | | Closes #17552
* | Merge pull request #17775 from charris/backport-17598Charles Harris2020-11-142-18/+46
|\ \ | |/ |/| BUG: Fixed file handle leak in array_tofile.
| * TST: Check that tofile closes its Python handle when we pass it a str.Simon Graham2020-11-141-1/+4
| | | | | | | | If we pass a str to tofile() rather than an open file object, it will open a Python handle. Make sure that it gets closed correctly.
| * MAINT: Refactored array_tofile to use a helper function.Simon Graham2020-11-141-22/+27
| |
| * BUG: Made array_tofile exception safe.Simon Graham2020-11-141-13/+17
| |
| * BUG: array_tofile now always closes the original file handle.Simon Graham2020-11-141-18/+19
| |
| * Update numpy/core/src/multiarray/methods.cSimon Graham2020-11-141-4/+12
| | | | | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
| * BUG: Fixed file handle leak in array_tofile.Simon Graham2020-11-142-5/+12
|/ | | | The dup-ed file handle created in array_tofile is now closed when PyArray_ToFile fails.
* Merge pull request #17756 from charris/backport-17751Charles Harris2020-11-111-1/+1
|\ | | | | BUG: Fix segfault due to out of bound pointer in floatstatus check
| * Update numpy/core/src/umath/simd.inc.srcSebastian Berg2020-11-111-1/+1
| |
| * BUG: Fix segfault due to out of bound pointer in floatstatus checkSebastian Berg2020-11-111-1/+1
|/
* REL: prepare 1.19.x for further developmentCharles Harris2020-11-024-3/+10
|
* REL: NumPy 1.19.4 release.v1.19.4Charles Harris2020-10-301-1/+1
|
* Merge pull request #17683 from charris/prepare-for-1.19.4-releaseCharles Harris2020-10-303-2/+48
|\ | | | | REL: Prepare for the NumPy 1.19.4 release.
| * REL: Prepare for the NumPy 1.19.4 release.Charles Harris2020-10-303-2/+48
|/ | | | | | - Create 1.19.4-notes.rst - Create 1.19.4-changelog.rst - Corrections to 1.19.3-notes.rst
* Merge pull request #17679 from charris/backport-17553Charles Harris2020-10-291-0/+20
|\ | | | | MAINT: Add check for Windows 10 version 2004 bug.
| * MAINT: Add check for Windows 10 version 2004 bug.Charles Harris2020-10-291-0/+20
| | | | | | | | Warn when the OS shows the fmod bug.
* | Merge pull request #17680 from charris/revert-openblas-for-1.19.4Charles Harris2020-10-291-141/+58
|\ \ | |/ |/| REV: Revert OpenBLAS to 1.19.2 version for 1.19.4
| * REV: Revert OpenBLAS to 1.19.2 version for 1.19.4Charles Harris2020-10-291-141/+58
|/ | | | | | Using OpenBLAS 0.3.12 led to segfaults, see gh-17674, so revert to previous version. The Windows 10 version 2004 problem remains, but we will warn instead when it is detected.
* REL: prepare 1.19.x for further developmentCharles Harris2020-10-283-3/+4
|
* REL: NumPy 1.19.3 release.v1.19.3Charles Harris2020-10-282-4/+1
|
* Merge pull request #17663 from charris/prepare-1.16.3-releaseCharles Harris2020-10-282-30/+62
|\ | | | | REL: Prepare for the NumPy 1.19.3 release.
| * REL: Prepare for the NumPy 1.19.3 release.Charles Harris2020-10-282-30/+62
|/ | | | | | | - Create 1.19.3-changelog.rst - Update 1.19.3-notes.rst [ci skip]
* Merge pull request #17660 from charris/backport-17658Charles Harris2020-10-272-4/+2
|\ | | | | TST: Simplify source path names in test_extending.
| * TST: Simplify source path names in test_extending.Charles Harris2020-10-272-4/+2
|/ | | | | This is a fix for Python 3.9 Azure windows builds that were failing on account of too long temporary file names.
* Merge pull request #17653 from charris/update-3.9-testingCharles Harris2020-10-273-1/+17
|\ | | | | TST: Add Python 3.9 to the CI testing on Windows, Mac.
| * TST: Disable test_extending on Windows running Python 3.9.Charles Harris2020-10-271-0/+3
| | | | | | | | | | | | There is a problem with the temporary filename generated for the test. It looks safe to ignore that for the the 1.19.3 release, we can worry about it more for the 1.20.0 release.
| * TST: Add Python 3.9 to the CI testing on Windows, Mac.Charles Harris2020-10-272-1/+14
|/
* Merge pull request #17652 from charris/backport-openblas_supportCharles Harris2020-10-272-67/+157
|\ | | | | MAINT: Backport openblas_support from master.