summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Fix a couple of reference to verbatim and vice versaMatthias Bussonnier2020-12-185-16/+16
| | | | | | | | | | | | | | | | 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.
* Merge pull request #17973 from seberg/require-sequence-array-coercionCharles Harris2020-12-184-6/+192
|\ | | | | DEP: Futurewarn on requiring __len__ on array-likes
| * DEP: Futurewarn on requiring __len__ on array-likesSebastian Berg2020-12-104-6/+192
| | | | | | | | | | | | | | 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).
* | DOC: Doc for deprecate_with_doc (#17852)kumudlakara2020-12-173-3/+37
| | | | | | | | | | | | * 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>
* | Merge pull request #18011 from mattip/openblas-v0.3.13Charles Harris2020-12-171-80/+2
|\ \ | | | | | | BLD: update to OpenBLAS 0.3.13
| * | BLD: update to OpenBLAS 0.3.13mattip2020-12-171-80/+2
|/ /
* | Merge pull request #17736 from seiko2plus/issue_17716Matti Picus2020-12-163-1/+19
|\ \ | | | | | | BUG, Benchmark: fix passing optimization build options to asv
| * | BUG, Benchmark: fix passing optimization build options to asvSayed Adel2020-11-093-1/+19
| | |
* | | Merge pull request #17817 from seberg/test-bad-array-likeMatti Picus2020-12-163-4/+48
|\ \ \ | | | | | | | | BUG: Ignore fewer errors during array-coercion
| * | | BUG: Ignore fewer errors during array-coercionSebastian Berg2020-11-243-4/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Merge pull request #18008 from mattip/fix1Charles Harris2020-12-161-4/+4
|\ \ \ \ | | | | | | | | | | DOC: fix for doctests
| * | | | DOC: fix for doctestsmattip2020-12-161-4/+4
|/ / / /
* | | | Merge pull request #17976 from rnarkk/format-quickstartMatti Picus2020-12-161-197/+181
|\ \ \ \ | | | | | | | | | | DOC: Add/remove spaces in snippets and re-format here and there
| * | | | Remove spaces around **Rin Arakaki2020-12-161-6/+6
| | | | |
| * | | | Add/remove spaces in snippets and re-format here and thereRin Arakaki2020-12-111-200/+184
| | | | |
* | | | | DOC: Fix and extend the docstring for np.inner (#18002)Michal W. Tarnowski2020-12-161-6/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | | | | Merge pull request #16370 from takanori-pskq/i16217Matti Picus2020-12-1616-169/+236
|\ \ \ \ \ | | | | | | | | | | | | DOC: Fix for building with sphinx 3
| * | | | | DOC: Fix for buildling with sphinx 3takanori-pskq2020-11-0616-169/+236
| | | | | |
* | | | | | Merge pull request #17637 from takanori-pskq/i13114-add-module-templateMatti Picus2020-12-161-0/+40
|\ \ \ \ \ \ | | | | | | | | | | | | | | DOC: Add module template
| * | | | | | Update doc/source/_templates/autosummary/module.rstTakanori H2020-10-291-1/+3
| | | | | | | | | | | | | | | | | | | | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
| * | | | | | DOC: Add module templatetakanori-pskq2020-10-261-0/+38
| | | | | | |
* | | | | | | Merge pull request #16818 from rohitsanj/examples-rfft2-irfft2Charles Harris2020-12-151-0/+19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | DOC: added examples section for rfft2 and irfft2 docstring
| * | | | | | | DOC: update rfft2/irfft2 examples.Ross Barnowski2020-08-171-12/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update rfft2 example to conform to fft2 example and switch the irfft2 example to illustrate round-tripping.
| * | | | | | | DOC: added examples for rfft2 and irfft2 docstringRohit Sanjay2020-08-171-0/+17
| | | | | | | |
* | | | | | | | Merge pull request #16241 from seberg/reimport-warningCharles Harris2020-12-153-5/+53
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | DOC: Warn when reloading numpy or using numpy in sub-interpreter
| * | | | | | | | DOC: Warn when reloading numpy or using numpy in sub-interpreterSebastian Berg2020-12-153-5/+53
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | Merge pull request #16855 from marload/fix-issue-10244Charles Harris2020-12-151-2/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | DOC: Fix Typo (Wrong argument name)
| * \ \ \ \ \ \ \ Merge branch 'master' into fix-issue-10244Charles Harris2020-12-13679-18791/+55685
| |\ \ \ \ \ \ \ \
| * | | | | | | | | DOC: Fix Typomarload2020-07-141-2/+2
| | | | | | | | | |
* | | | | | | | | | DOC: Add more information about poly1d -> polynomial to reference guide (#16164)Ross Barnowski2020-12-151-10/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | | | | | | | | | Merge pull request #17999 from stefanv/Numpy-to-NumPyCharles Harris2020-12-146-39/+39
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Replace Numpy with NumPy
| * | | | | | | | | | Replace Numpy with NumPyStefan van der Walt2020-12-146-39/+39
|/ / / / / / / / / /
* | | | | | | | | | Merge pull request #17997 from numpy/dependabot/pip/hypothesis-5.43.3Charles Harris2020-12-141-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | MAINT: Bump hypothesis from 5.41.5 to 5.43.3
| * | | | | | | | | | MAINT: Bump hypothesis from 5.41.5 to 5.43.3dependabot/pip/hypothesis-5.43.3dependabot-preview[bot]2020-12-141-1/+1
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | | | | | | | Merge pull request #17995 from numpy/dependabot/pip/pytest-6.2.0Matti Picus2020-12-142-2/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | MAINT: Bump pytest from 6.0.2 to 6.2.0
| * \ \ \ \ \ \ \ \ \ Merge pull request #17998 from mattip/pytest-6.2.0Matti Picus2020-12-141-1/+2
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | TST: ignore pytest warning
| | * | | | | | | | | | TST: ignore pytest warningmattip2020-12-141-1/+2
| |/ / / / / / / / / /
| * | | | | | | | | | MAINT: Bump pytest from 6.0.2 to 6.2.0dependabot/pip/pytest-6.2.0dependabot-preview[bot]2020-12-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | | | | | | | | Merge pull request #17994 from Qiyu8/einsum-dotMatti Picus2020-12-141-141/+45
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | SIMD: Optimize the performance of einsum's submodule dot .
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of github.com:numpy/numpy into einsum-dotQiyu82020-12-1419-69/+115
| |\ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / /
| * | | | | | | | | | | add highest gcc optimization level.Qiyu82020-12-141-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | remove force avx2Qiyu82020-12-141-5/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Optimize the performance of einsum's submodule dotQiyu82020-12-142-141/+49
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #17921 from bashtage/uniform-high-low-checkMatti Picus2020-12-143-11/+29
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | BUG: Enforce high >= low on uniform number generators
| * | | | | | | | | | | | Revert changes to mtrandKevin Sheppard2020-12-115-20/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This doesn't qualify for fixing under the NEP.
| * | | | | | | | | | | | BUG: Enforce high >= low on uniform number generatorsKevin Sheppard2020-12-114-14/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Check that high is weakly larger than low and raise if now closes #17905
* | | | | | | | | | | | | Merge pull request #17953 from seberg/accept-nep-42Matti Picus2020-12-141-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | NEP: Accept NEP 42 -- New and extensible DTypes
| * | | | | | | | | | | | | NEP: Accept NEP 42 -- New and extensible DTypesSebastian Berg2020-12-071-2/+2
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #17942 from stefanv/npyio-docMatti Picus2020-12-141-19/+21
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: Clarify savez documentation of naming arrays in output file
| * | | | | | | | | | | | | | Clarify savez documentation around naming of arrays in output fileStefan van der Walt2020-12-061-19/+21
| | | | | | | | | | | | | | |