| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This update a coupe of references (single backticks) that actually are not to
verbatim/code (double backticks); and a couple of verbatim to reference
when they do actually exists and can be resolved in context.
I probably missed other; and stayed simple but spoted a few other
inconsistencies that I did not fix:
- some ``...`` could actually be :math:`...` but not always clear if
it would be better.
- some intervals are [``...``], other are ``[...]``
I guess they could be discussed individually; it was mostly the failing
references that bothered me.
|
|\
| |
| | |
DEP: Futurewarn on requiring __len__ on array-likes
|
| |
| |
| |
| |
| |
| |
| | |
This fixes issue gh-17965. The slightly annoying thing is that
there is no simple way to opt-in to the new behaviour and the old
behaviour is a bit quirky to begin with (honoring the dtype, but
not the shape).
|
| |
| |
| |
| |
| |
| | |
* Add doc for deprecate_with_doc
Co-authored-by: Bas van Beek <43369155+BvB93@users.noreply.github.com>
Co-authored-by: Matti Picus <matti.picus@gmail.com>
|
|\ \
| | |
| | | |
BLD: update to OpenBLAS 0.3.13
|
|/ / |
|
|\ \
| | |
| | | |
BUG, Benchmark: fix passing optimization build options to asv
|
| | | |
|
|\ \ \
| | | |
| | | | |
BUG: Ignore fewer errors during array-coercion
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This changes it so that we only ignore attribute errors on
looking up `__array__` and propagate errors when checking
for sequences `len(obj)` if those errors are either
RecursionError or MemoryError (we consider them unrecoverable).
Also adds test for bad recursive array-like with sequence
as reported in gh-17785. The test might be flaky/more complicated
in which case it should probably just be deleted.
|
|\ \ \ \
| | | | |
| | | | | |
DOC: fix for doctests
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
DOC: Add/remove spaces in snippets and re-format here and there
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* DOC: fix the docstring for np.inner
* DOC: extend the docstring for np.inner and add an example
* DOC: update numpy/core/multiarray.py
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* DOC: apply suggestions from code review
Co-authored-by: Matti Picus <matti.picus@gmail.com>
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Co-authored-by: Matti Picus <matti.picus@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
DOC: Fix for building with sphinx 3
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
DOC: Add module template
|
| | | | | | |
| | | | | | |
| | | | | | | |
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
DOC: added examples section for rfft2 and irfft2 docstring
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Update rfft2 example to conform to fft2 example and switch the irfft2
example to illustrate round-tripping.
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
DOC: Warn when reloading numpy or using numpy in sub-interpreter
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This adds a warning when the main NumPy module is reloaded
with the assumption that in this case objects such as `np.matrix`,
`np._NoValue` or exceptions may be cached internally.
It also gives a warning when NumPy is imported in a sub-interpreter.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
DOC: Fix Typo (Wrong argument name)
|
| |\ \ \ \ \ \ \ \ |
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
* Added internal link to polynomial package.
Also uncapitalized Polynomial, to mitigate potential confusion of the Polynomial
convenience class with the polynomial package.
* WIP: Adding transition guide from poly1d to polynomial
* WIP: Started adding quickref table for poly transition
* WIP: Finish fleshing out transition guide for polynomials
* Proofreading transition guide.
* Fix traceback in code example for failing doctest.
* DOC: Remove trailing _ from sphinx links.
Was causing a CI failure on building the devdocs
* Fix typo.
Co-Authored-By: Chris Barnes <barnesc@janelia.hhmi.org>
* DOC: Add note about terminology.
Clarify the distinction between polynomial module and polynomial
package.
Co-authored-by: Chris Barnes <barnesc@janelia.hhmi.org>
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Replace Numpy with NumPy
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
MAINT: Bump hypothesis from 5.41.5 to 5.43.3
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 5.41.5 to 5.43.3.
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-5.41.5...hypothesis-python-5.43.3)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
MAINT: Bump pytest from 6.0.2 to 6.2.0
|
| |\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
TST: ignore pytest warning
|
| |/ / / / / / / / / / |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.0.2 to 6.2.0.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/6.0.2...6.2.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
SIMD: Optimize the performance of einsum's submodule dot .
|
| |\ \ \ \ \ \ \ \ \ \ \
| | |/ / / / / / / / / / |
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
BUG: Enforce high >= low on uniform number generators
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
This doesn't qualify for fixing under the NEP.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Check that high is weakly larger than low and raise if now
closes #17905
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
NEP: Accept NEP 42 -- New and extensible DTypes
|
| | | | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
DOC: Clarify savez documentation of naming arrays in output file
|
| | | | | | | | | | | | | | | |
|