summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | ENH: Replace AxisError with more spefic oneSebastian Berg2022-12-021-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In theory, an object matmul could be caught here, but lets assume that doesn't happen...
| * | | | | | | | | | ENH: Implement matmul using the nuclear optionsSebastian Berg2022-12-021-23/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This uses the `axes` argument. Arguably the most correct version since we use the full ufunc machinery, so we can't mess up with random conversions (which the test suite actually did notice, at least for an array subclass). OTOH, for now the errors are ridiculously unhelpful, some of which could be fixed in the gufunc code (at least made _better_).
| * | | | | | | | | | MAINT: Move check and expand error message slightlySebastian Berg2022-12-021-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In principle, this is probably still not 100% correct always since we convert the the other object to an array upfront (to get the error). But the alternative solution using `axes=` seems tricky as well...
| * | | | | | | | | | MAINT: Explicitly raise when `a @= b` would otherwise broadcast the outputBas van Beek2022-12-022-2/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add special casing for `1d @ 1d` and `2d @ 1d` ops.
| * | | | | | | | | | TST: Add `__imatmul__` tests for arrays with various shapesBas van Beek2022-12-021-5/+27
| | | | | | | | | | |
| * | | | | | | | | | TST: Add a dedicated `__imatmul__` test case for large matricesBas van Beek2022-12-021-1/+14
| | | | | | | | | | |
| * | | | | | | | | | MAINT: Let `ndarray.__imatmul__` handle inplace matrix multiplication in the ↵Bas van Beek2022-12-021-12/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | array-api
| * | | | | | | | | | TST: Add tests for inplace matrix multiplicationBas van Beek2022-12-021-11/+28
| | | | | | | | | | |
| * | | | | | | | | | DOC: Remove an outdated `matmul` commentBas van Beek2022-12-021-1/+0
| | | | | | | | | | |
| * | | | | | | | | | ENH: Add support for inplace matrix multiplicationBas van Beek2022-12-023-7/+40
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #23455 from seberg/run-coverageMatti Picus2023-03-261-0/+9
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | CI: Ensure coverage is run for merges
| * | | | | | | | | | | CI: Ensure coverage is run for mergesSebastian Berg2023-03-261-0/+9
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recently, coverage has been starting to pile up bad "changed files" that didn't actually change. For now it was a minor nuisance but this will just increase. We could probably just run this every few days also, coverage doesn't change too quickly. But it needs to run on merges regularly.
* | | | | | | | | | | Merge pull request #23449 from charris/update-dependabotMatti Picus2023-03-261-5/+4
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | MAINT: Stop dependabot docker checks.
| * | | | | | | | | | | MAIN: Stop dependabot docker checks.Charles Harris2023-03-251-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Docker related files have been removed from numpy.
* | | | | | | | | | | | Merge pull request #23061 from MatteoRaso/vectorizeMatti Picus2023-03-263-11/+115
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | ENH: Enabled the use of numpy.vectorize as a decorator
| * | | | | | | | | | | | Added release note (#23061)Matteo Raso2023-02-271-0/+6
| | | | | | | | | | | | |
| * | | | | | | | | | | | @vectorize now requires arguments to specify keywordsMatteo Raso2023-02-092-27/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverses commit 7a2ded1522305
| * | | | | | | | | | | | Added a test for positional args (PR-23061)Matteo Raso2023-02-082-0/+30
| | | | | | | | | | | | |
| * | | | | | | | | | | | Added test for vectorize decorator projectMatteo Raso2023-01-271-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test makes sure a function's docstring is properly preserved after calling the vectorize decorator.
| * | | | | | | | | | | | Changed documentation for numpy.vectorizeMatteo Raso2023-01-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous definition implies that vectorize returns generalized functions, which is not true.
| * | | | | | | | | | | | Fixed lint errorMatteo Raso2023-01-211-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | ENH: Enabled use of numpy.vectorize as decorator (#9477)Matteo Raso2023-01-212-12/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most of this code comes from PR-9593, but with the default value for pyfunc being numpy._NoValue instead of None, no override of __new__, and no effort to make subclassing possible. Co-Authored-By: Michael Lamparski <diagonaldevice@gmail.com>
| * | | | | | | | | | | | BUG: Added __name__ atribute to vectorize class (#23021)Matteo Raso2023-01-182-0/+8
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #23322 from F3eQnxN3RriK/enh-ma-dotMatti Picus2023-03-264-96/+153
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | ENH: Add support to `ma.dot()` for non-2d arrays with `strict=True`
| * | | | | | | | | | | | | DOC: add release noteyuki2023-03-251-0/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | MAINT: move `mask_rowcols` to `ma/extras.py`yuki2023-03-252-93/+90
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | ENH: revert changes of `mask_rowcols`yuki2023-03-221-8/+12
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | ENH: fix formatyuki2023-03-221-12/+24
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merge branch 'main' into enh-ma-dotyuki2023-03-22104-620/+859
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | add support for non-2d arraysyuki2023-03-032-25/+65
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #23453 from sadigulcelik/mainCharles Harris2023-03-251-2/+0
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: typo, remove unfollowed conjunction "However" [skip ci]
| * | | | | | | | | | | | | | | DOC: typo, remove unfollowed conjunction "However" [skip ci]sadigulcelik2023-03-251-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Typo fixed; remove unfollowed conjunction "However."
* | | | | | | | | | | | | | | | Merge pull request #23451 from F3eQnxN3RriK/maint-doc-add-characterCharles Harris2023-03-251-0/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: add entry for `numpy.character`
| * | | | | | | | | | | | | | | | DOC: add entry for `numpy.character`yuki2023-03-251-0/+4
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #23450 from F3eQnxN3RriK/maint-doc-role-astCharles Harris2023-03-252-12/+12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | MAINT: Fix reference roles of `ast`
| * | | | | | | | | | | | | | | MAINT: Fix reference roles of astyuki2023-03-251-5/+5
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | MAINT: Fix reference roles of `ast`yuki2023-03-251-7/+7
|/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge pull request #23448 from ChVeen/Fix-broken-links-in-absoft.pyCharles Harris2023-03-241-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | MAINT Fix broken links in absoft.py
| * | | | | | | | | | | | | | MAINT Fix broken links in absoft.pyChristian Veenhuis2023-03-241-2/+2
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #23447 from ↵Charles Harris2023-03-249-29/+29
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/actions/checkout-3.5.0 Bump actions/checkout from 3.4.0 to 3.5.0
| * | | | | | | | | | | | | | Bump actions/checkout from 3.4.0 to 3.5.0dependabot[bot]2023-03-249-29/+29
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/24cb9080177205b6e8c946b17badbe402adc938f...8f4b7f84864484a7bf31766abe9204da3cbe65b3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | | Merge pull request #23445 from F3eQnxN3RriK/maint-fix-link-exampleCharles Harris2023-03-231-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MAINT: Fix a broken section link
| * | | | | | | | | | | | | | MAINT: Fix a broken section linkyuki2023-03-241-2/+2
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #23444 from rgommers/remove-gitpodCharles Harris2023-03-2322-704/+27
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MAINT: remove support for Gitpod, add note on using Codespaces
| * | | | | | | | | | | | | | MAINT: remove support for Gitpod, add note on using CodespacesRalf Gommers2023-03-2322-704/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See this mailing list thread for the discussion on removal: https://mail.python.org/archives/list/numpy-discussion@python.org/thread/SSPI7HVL2PLWPFL42T6UNR2ENARE5A5E/ [skip azp] [skip cirrus]
* | | | | | | | | | | | | | | Merge pull request #23441 from jarrodmillman/spin0.3Charles Harris2023-03-235-28/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | MAINT: Update spin
| * | | | | | | | | | | | | | Pin until stableJarrod Millman2023-03-231-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Update spinJarrod Millman2023-03-235-28/+9
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #23436 from F3eQnxN3RriK/fix-docs-declarationCharles Harris2023-03-231-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: Remove descriptions in method declarations
| * | | | | | | | | | | | | | DOC: Remove descriptions in method declarationsyuki2023-03-231-2/+2
| | | | | | | | | | | | | | |