summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
...
| * | | TST: add tests for in1d/isinMilesCranmer2022-06-091-0/+99
| * | | MAINT: Optimize np.isin for boolean arraysMilesCranmer2022-06-091-0/+6
| * | | MAINT: Optimize np.isin for integer arraysMilesCranmer2022-06-091-0/+40
* | | | Merge pull request #21830 from Anselmoo/fixSebastian Berg2022-06-231-1/+1
|\ \ \ \
| * | | | fix: :bug: Change substract to subtractAnselm Hahn2022-06-231-1/+1
| | |/ / | |/| |
* | | | Merge pull request #21797 from karlotness/enh-np-requireSebastian Berg2022-06-231-11/+13
|\ \ \ \ | |/ / / |/| | |
| * | | MAINT: simplify flow in np.requireKarl Otness2022-06-221-10/+12
| * | | DOC: mention that np.require takes a sequence of requirementsKarl Otness2022-06-191-1/+1
* | | | Merge pull request #21798 from karlotness/maint-import-array-errCharles Harris2022-06-201-5/+8
|\ \ \ \
| * | | | MAINT: use PyErr_SetString in _import_array where possibleKarl Otness2022-06-201-5/+8
| |/ / /
* | | | Merge pull request #21789 from hoodmane/void-to-int-return-values-f2cCharles Harris2022-06-192-11/+12
|\ \ \ \ | |/ / / |/| | |
| * | | ENH: Change f2c declarations with void return type to intHood Chatham2022-06-172-11/+12
* | | | BUG: Fix comparison for empty structured arrays (#21796)Srimukh Sripada2022-06-192-1/+21
* | | | BUG: lib: A loadtxt error message had two values reversed.warren2022-06-182-6/+6
* | | | ENH: add overflow handling for scalar `negative` operation (#21790)Meekail Zain2022-06-182-6/+20
* | | | MAINT: fix up use of `NPY_NO_DEPRECATED_API` usage in f2pyRalf Gommers2022-06-171-1/+3
* | | | Merge pull request #21779 from WarrenWeckesser/hameerabbasi-disallow-complex-...Charles Harris2022-06-162-0/+11
|\ \ \ \
| * | | | MAINT: random: Update to disallowing complex inputs to multivariate_normal.warren2022-06-162-3/+8
| * | | | MAINT: random: Disallow complex covariances in multivariate_normalHameer Abbasi2022-06-162-0/+6
* | | | | MAINT, SIMD: remove orphan path vsx/conversion.hSayed Adel2022-06-161-146/+0
|/ / / /
* | | | MAINT: fix typo in string_ufuncs.cpp (#21773)Ikko Ashimine2022-06-161-1/+1
* | | | Merge pull request #21771 from WarrenWeckesser/readtxt-check-callocSebastian Berg2022-06-151-0/+4
|\ \ \ \ | |_|_|/ |/| | |
| * | | MAINT: Add a check of the return value of PyMem_Calloc().warren2022-06-151-0/+4
* | | | MAINT: Fix computation of numpy.array_api.linalg.vector_norm (#21084)Aaron Meurer2022-06-151-8/+31
|/ / /
* | | Fix a potential variable misuse bugJingxuan He2022-06-151-1/+1
* | | MAINT: use f-string format in test_abc.py (#21763)Vardhaman2022-06-151-12/+12
* | | MAINT: remove some names from main numpy namespace (#21403)Ross Barnowski2022-06-152-3/+12
* | | TST: Clean up an opened temporary file descriptor in loadtxt testsSebastian Berg2022-06-141-0/+5
* | | BUG: Decref `loadtxt` converters when doneSebastian Berg2022-06-141-2/+12
* | | BUG: Fix DECREF when `__array_priority__` is None (or similar)Sebastian Berg2022-06-141-1/+1
* | | Merge pull request #21755 from seberg/fix-pyint-result-typeCharles Harris2022-06-142-1/+15
|\ \ \
| * | | BUG: Do not skip value-based promotion path for large Python integersSebastian Berg2022-06-142-1/+15
* | | | Merge pull request #21732 from hoodmane/fenv-missing-flagsSebastian Berg2022-06-142-0/+48
|\ \ \ \
| * | | | MAINT: Simplify FE_INVALID redefine logic slightly and copy to cppSebastian Berg2022-06-142-48/+54
| * | | | ENH: Add support for platforms with missing fenv flagsHood Chatham2022-06-141-12/+54
* | | | | MAINT: limit the number of decimals in Polynomial representation (#21654)Lev Maximov2022-06-146-52/+167
|/ / / /
* | | | Merge pull request #21567 from bsipocz/doctest_enable_in_pytesttesterCharles Harris2022-06-141-3/+1
|\ \ \ \
| * | | | BUG: Adding the default pytest doctest runner instead of the ValueError to th...Brigitta Sipőcz2022-05-211-3/+1
* | | | | Merge pull request #21749 from seiko2plus/issue_21747Matti Picus2022-06-141-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | BUG, SIMD: Fix detecting NEON/ASIMD on aarch64Sayed Adel2022-06-141-1/+1
* | | | | Merge pull request #21748 from pradghos/s390x_numpy_fixSayed Adel2022-06-141-2/+7
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | addressed review commentsPradipta Ghosh2022-06-131-4/+4
| * | | | Fix for npyv_orc_b8 and npyv_xnor_b8 for s390x(z13)Pradipta Ghosh2022-06-131-2/+7
* | | | | Merge pull request #21437 from seberg/fpe-in-castMatti Picus2022-06-1427-239/+832
|\ \ \ \ \
| * | | | | TST: Remove FPE `fill` special case after rebaseSebastian Berg2022-06-131-10/+5
| * | | | | TST: Add final set of cast (and FPE in cast) test to ufuncsSebastian Berg2022-06-131-1/+23
| * | | | | TST: Enable inteer array assignment test and add flat testSebastian Berg2022-06-131-1/+7
| * | | | | BUG: Avoid `NpyIter_EnableExternalLoop` as it resets the bufferSebastian Berg2022-06-131-3/+5
| * | | | | TST: Improve test coverage for complex FPE cast errorsSebastian Berg2022-06-131-0/+6
| * | | | | TST: Add type check to not trigger an invalid FPE within PyPySebastian Berg2022-06-131-2/+4