summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* DOC: note support for NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=0Stephan Hoyer2019-05-251-6/+9
|
* DOC: revert __skip_array_function__ from NEP-18Stephan Hoyer2019-05-251-166/+79
| | | | | | | | | This reverts most of the changes from GH-13305, and adds a brief discussion of ``__skip_array_function__`` into the "Alternatives" section. We still use NumPy's implementation of the function internally inside ``ndarray.__array_function__``, but I've given it a new name in the NEP (``_implementation``) to indicate that it's a private API.
* Merge pull request #13584 from rgommers/roadmap-updateMatti Picus2019-05-241-65/+64
|\ | | | | DOC: roadmap update
| * DOC: some more tweaks of roadmap text based on review comments.Ralf Gommers2019-05-221-6/+3
| | | | | | | | [ci skip]
| * DOC: roadmap update.Ralf Gommers2019-05-191-64/+66
| | | | | | | | | | | | | | | | - Update for changes in the past year - Make top-level headings clearer (interoperability, extensibility, etc) - Give website and documentation its own heading (is important) - Remove typing and array scalars, doesn't belong here - General cleanup, fix ReST formatting, etc.
* | Merge pull request #13158 from zerothi/linalg-flameRalf Gommers2019-05-242-3/+36
|\ \ | | | | | | BLD: Add libflame as a LAPACK back-end
| * | BLD: added libflame as a useable lapack libraryNick Papior2019-05-072-3/+36
| | | | | | | | | | | | | | | | | | | | | Now libflame may be used as a LAPACK back-end. libflame requires an external BLAS so one has to also have this enabled. Also added release notes for NPY_*_ORDER and libFLAME.
* | | Merge pull request #13595 from mattip/update-nep-0019Sebastian Berg2019-05-211-33/+37
|\ \ \ | | | | | | | | NEP: update NEP 19 with API terminology
| * | | NEP: update NEP 19 with API terminologymattip2019-05-211-33/+37
| | | |
* | | | Merge pull request #13463 from seberg/writable-segfaultMatti Picus2019-05-211-0/+10
|\ \ \ \ | |/ / / |/| | | BUG,DEP: Fix writeable flag setting for arrays without base
| * | | BUG,DEP: Fix writeable flag setting for arrays without baseSebastian Berg2019-05-161-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also deprecates setting a non-writeable array to writeable if that array does not own its data (and has no base object to check if the memory may be writeable). (Deprecation on Python side only) Closes gh-481
* | | | Merge pull request #13491 from eric-wieser/npy-2.1Matti Picus2019-05-191-0/+6
|\ \ \ \ | | | | | | | | | | BUG/ENH: Create npy format 3.0 to support extended unicode characters in dtypes
| * \ \ \ Merge branch 'master' into npy-2.1Matti Picus2019-05-196-140/+371
| |\ \ \ \
| * | | | | BUG/ENH: Create npy format 3.0Eric Wieser2019-05-071-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This version encodes the dtype as utf8 instead of latin1. Unfortunately we need to create a new version to make this change, because we did not limit ourselves to ASCII in versions 1 and 2. Fixes gh-7391
* | | | | | Merge pull request #13570 from kritisingh1/duplicateMatti Picus2019-05-192-41/+19
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | DOC: Remove duplicate documentation of the PyArray_SimpleNew family of functions
| * | | | | DOC: Remove duplicate documentation of the PyArray_SimpleNew family of functionskritisingh12019-05-182-41/+19
| | | | | |
* | | | | | Merge pull request #13503 from fruchart/matmul-objectMatti Picus2019-05-151-0/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | ENH: Support object arrays in matmul
| * | | | | | Release notes.Michel Fruchart2019-05-131-0/+9
| | | | | | |
* | | | | | | Merge pull request #13239 from parulagg27/doc-minor-fixesMatti Picus2019-05-152-20/+20
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | DOC: Minor grammatical fixes in NumPy docs
| * | | | | | | made required changesparul2019-04-111-1/+1
| | | | | | | |
| * | | | | | | made required changesparul2019-04-071-1/+1
| | | | | | | |
| * | | | | | | minor fixesparul2019-04-061-1/+1
| | | | | | | |
| * | | | | | | Changed wordings (trunk -> master,etc.) in HOWTO_RELEASE fileparul2019-04-061-4/+4
| | | | | | | |
| * | | | | | | Made required changes to C_STYLE_GUIDE fileparul2019-04-061-4/+4
| | | | | | | |
| * | | | | | | DOC-minor fixesparul2019-04-022-21/+21
| | | | | | | |
* | | | | | | | DOC: Add release noteEric Wieser2019-05-141-0/+25
| |_|/ / / / / |/| | | | | |
* | | | | | | Merge pull request #13305 from shoyer/nep-18-__numpy_implementation__Matti Picus2019-05-131-107/+250
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | NEP: Update NEP-18 to include the ``__skip_array_function__`` attribute.
| * | | | | | | Clarify why we allow subclasses in ndarray.__array_function__Stephan Hoyer2019-05-111-6/+15
| | | | | | | |
| * | | | | | | Rename __numpy_implementation__ -> __skip_array_function__Stephan Hoyer2019-05-101-32/+52
| | | | | | | |
| * | | | | | | Add clarification and fixes per PR discussionStephan Hoyer2019-04-141-21/+84
| | | | | | | |
| * | | | | | | NEP: Update NEP-18 to include the __numpy_implementation__ attribute.Stephan Hoyer2019-04-111-118/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix GH12974 This includes two minor changes to NEP-18 that will need to be implemented in NumPy: - The ``__numpy_implementation__`` attribute is documented and officially supported as a way to defer to NumPy's own implementation. - I have noted that dispatcher functions should be given the same name as implementations, which should result in more interprettable error messages.
* | | | | | | | Merge pull request #10308 from eric-wieser/mask-attr-is-viewMatti Picus2019-05-121-0/+10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | API: Make MaskedArray.mask return a view, rather than the underlying mask
| * | | | | | | | API: Make MaskedArray.mask return a view, rather than the underlying maskEric Wieser2019-05-111-0/+10
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents consumers from reshaping the mask in place, which breaks things As a result, `x.mask is x.mask` returns `False`, but this was already true of `x.data is x.data`. May also be related to gh-10270
* | | | | | | | Merge pull request #12962 from mattip/unpackbitsCharles Harris2019-05-111-0/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | ENH: Add 'bitorder' keyword to packbits, unpackbits
| * | | | | | | | ENH: add 'order' keyword to packbits, unpackbitsmattip2019-05-111-0/+5
| | |_|_|_|_|_|/ | |/| | | | | |
* | | | | | | | Merge pull request #12586 from hameerabbasi/radix-sortCharles Harris2019-05-111-0/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | ENH: Implement radix sort
| * | | | | | | | ENH: Radix sortHameer Abbasi2019-05-111-0/+11
| |/ / / / / / /
* | | | | | | | Merge pull request #13416 from bashtage/protect-log-random-generationCharles Harris2019-05-111-0/+11
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | BUG: Protect generators from log(0.0)
| * | | | | | | BUG: Proect generators from log(0.0)Kevin Sheppard2019-04-291-0/+11
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | Ensure log(0.0) doesn't produce inf/nan values when generating random values
* | | | | | | Version corrected in npymath docsManvi072019-05-041-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Merge pull request #13336 from mattip/doc-checkRalf Gommers2019-05-011-12/+28
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | BUILD: fail documentation build if numpy version does not match
| * | | | | BUILD, BUG: fix from review, fix bug in git_versionmattip2019-04-251-1/+1
| | | | | |
| * | | | | MAINT: mention 'make dist' in error messsagemattip2019-04-161-2/+2
| | | | | |
| * | | | | BUILD: allow version-check to pass if GITVER is Unknown (sdist build)mattip2019-04-151-2/+4
| | | | | |
| * | | | | BUILD: fail documentation build if numpy version does not matchmattip2019-04-151-11/+25
| | | | | |
* | | | | | Merge pull request #13132 from zerothi/linalg-orderRalf Gommers2019-05-011-1/+59
|\ \ \ \ \ \ | | | | | | | | | | | | | | BLD: Allow users to specify BLAS and LAPACK library link order
| * | | | | | ENH: amended documentation and changed env-vars as suggestedNick Papior2019-03-181-1/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also added a test to travis (apparently ATLAS=None... is not tested on circleCI). Signed-off-by: Nick Papior <nickpapior@gmail.com>
* | | | | | | Merge pull request #13413 from mattip/doc-linalgCharles Harris2019-04-301-0/+13
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | DOC: document existence of linalg backends
| * | | | | | DOC: document existance of linalg backendsmattip2019-04-301-0/+13
| | | | | | |
* | | | | | | Merge pull request #13417 from shoyer/ndarray-non-negativeEric Wieser2019-04-271-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | DOC: dimension sizes are non-negative, not positive