summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Fix incorrect GIL release in array.nonzero (#13930)Gary Gurlaskie2019-07-172-2/+58
| | | | | | Added checks to array.nonzero to ensure GIL is not released if it is needed. Closes gh-13753
* Merge pull request #13990 from mattip/fix-make-distSebastian Berg2019-07-172-17/+19
|\ | | | | BUILD: adapt "make version-check" to "make dist"
| * BUILD: adapt "make version-check" to "make dist"mattip2019-07-142-17/+19
| |
* | Merge pull request #14028 from IntelPython/fix-typoMatti Picus2019-07-171-2/+3
|\ \ | | | | | | DOC: Improve quickstart documentation of new random Generator
| * | edited opening statement per PR feedbackOleksandr Pavlyk2019-07-171-2/+3
| | |
| * | fixed likely type in the quick start opening sentence of devdoc referenceOleksandr Pavlyk2019-07-161-1/+1
| | |
* | | Merge pull request #14025 from sameshl/link_indexing_docsMatti Picus2019-07-172-1/+9
|\ \ \ | | | | | | | | DOC:Link between the two indexing documentation pages
| * | | DOC:Link between the two indexing documentation pagesSamesh2019-07-171-0/+1
| | | | | | | | | | | | | | | | Prettify see also directive
| * | | DOC:Link between the two indexing documentation pagesSamesh2019-07-162-2/+2
| | | | | | | | | | | | | | | | Fix linking error
| * | | DOC:Link between the two indexing documentation pagesSamesh2019-07-162-2/+2
| | | | | | | | | | | | | | | | Fixed linking error
| * | | DOC:Link between the two indexing documentation pagesSamesh2019-07-162-1/+8
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | Made references to each other for the following two indexing docs https://docs.scipy.org/doc/numpy-1.15.0/user/basics.indexing.html https://docs.scipy.org/doc/numpy-1.13.0/reference/arrays.indexing.html closes #12195
* | | Merge pull request #14030 from seberg/forwardport-13993Charles Harris2019-07-162-15/+37
|\ \ \ | |/ / |/| | DEP: Speed up WarnOnWrite deprecation in buffer interface
| * | DEP: Speed up WarnOnWrite deprecation in buffer interfaceSebastian Berg2019-07-162-15/+37
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a buffer interface does not request a writeable buffer, simply pass a read-only one when the warn on write flag is set. This is to give an easier way forward with avoiding the deprecation warnings: Simply do not ask for a writeable buffer. It will break code that expects writeable buffers but does not ask for them specifically a bit harder than would be nice. But since such code probably should ask for it specifically, this is likely fine (an RC release has to find out). The main reason for this is, that this way it plays very will with cython, which requests writeable buffers explicitly and if declared `const` is happy about read-only (so that using `const` is the best way to avoid the warning and makes code cleaner). Closes gh-13929, gh-13974
* | Merge pull request #14002 from tylerjereddy/expand_openblas_ver_checkMatti Picus2019-07-167-10/+41
|\ \ | | | | | | TST, MAINT, BUG: expand OpenBLAS version checking
| * | TST, MAINT: expand OpenBLAS version checkingTyler Reddy2019-07-147-10/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add a function to tools/openblas_support.py that may be used to test OpenBLAS version available through NumPy in a manner agnostic to any specific CI service * expand OpenBLAS version checking to include ppc64le and POWER8 CI runs; a separate PR will be provided to bump these versions to 0.3.7.dev * OpenBLAS install was broken on ppc64le Travis CI after migration to tools/openblas_support.py; fixed that * Azure CI config no longer uses a single-line 280-character Python "program" assigned to an environment variable to check OpenBLAS version; instead, it now leverages tools/openblas_support.py to perform the same operation using a conventional Python function
* | | MAINT: Remove unreachable `break` from `get_cblas_libs` (#14022)Disconnect3d2019-07-151-2/+0
| | |
* | | Merge pull request #13913 from mattip/improve-errorSebastian Berg2019-07-152-1/+11
|\ \ \ | | | | | | | | ENH: improve error message for ragged-array creation failure
| * | | ENH: improve error message for ragged-array creation failuremattip2019-07-042-1/+11
| | | |
* | | | Merge pull request #14011 from kritisingh1/udepMatti Picus2019-07-152-34/+0
|\ \ \ \ | | | | | | | | | | [DOC] Remove unused/deprecated functions
| * | | | [DOC] Remove unused/deprecated functionskritisingh12019-07-152-34/+0
| | | | |
* | | | | Merge pull request #14005 from Kai-Striega/fix_npy_tempita_spelling_errorCharles Harris2019-07-151-28/+28
|\ \ \ \ \ | | | | | | | | | | | | MAINT: Fix spelling error in npy_tempita kwarg
| * | | | | DEV: Fix spelling error in npy_tempita kwargkai-striega2019-07-151-28/+28
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes the spelling of the ``delimeter`` kwarg to ``delimiter`` (note the second e -> i) in the npy_tempita module. This npy_tempita vendorises Tempita a minimal templating language. The spelling has been fixed in the official documentation [1] and source code [2]. This commit fixes that fix by aligning npy_tempita with the reference documentation. Although the vendored version is used in NumPy the delimeter kwarg is not. This raised the consideration of reverting to either the original version or Cython's non-vendored version [3]. Both were decided against because: 1. The original is not actively maintained and required some fixes. 2. Cython's Tempita is an internal Cython tool and Cython may not guarantee that it will be present. [1] https://pyrocore.readthedocs.io/en/latest/tempita.html [2] https://bitbucket.org/ianb/tempita/src/default/tempita/__init__.py [3] https://github.com/cython/cython/blob/master/Cython/Tempita/_tempita.py
* | | | | Merge pull request #14004 from seberg/issue-14000Matti Picus2019-07-151-3/+1
|\ \ \ \ \ | | | | | | | | | | | | ENH: Chain exception for typed item assignment
| * | | | | ENH: Chain exception for typed item assignmentSebastian Berg2019-07-141-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was discussed in gh-14000, and slightly improves the situation at least maybe to the extend of understanding why it happens when looking more closely.
* | | | | | Merge pull request #13988 from seberg/readme-call-for-contributionsCharles Harris2019-07-141-0/+13
|\ \ \ \ \ \ | | | | | | | | | | | | | | DOC: Add a call for contribution paragraph to the readme
| * | | | | | DOC: Update based on review commentsSebastian Berg2019-07-141-4/+4
| | | | | | |
| * | | | | | DOC: Add a call for contribution paragraph to the readmeSebastian Berg2019-07-141-0/+13
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We would like to attract contributions from people that are currently underrepresented in the developer team. In particularly with regards to skills in high level documentation or website. As an attempt to reach more users, add this to the very visible README. Briefly wrote this paragraph with Ralf, we can iterate on it.
* | | | | | Merge pull request #13985 from mattip/doc-howCharles Harris2019-07-141-0/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | DOC: show workaround for backward compatibility
| * | | | | | DOC: show workaround for backward compatibilitymattip2019-07-141-0/+12
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #13991 from mattip/doc-make-versionCharles Harris2019-07-141-7/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | DOC: emphasize need for matching numpy, git versions
| * | | | | | DOC: emphasize need for matching numpy, git versionsmattip2019-07-141-7/+8
| |/ / / / /
* | | | | | Merge pull request #13979 from danielballan/array-function-high-level-docsCharles Harris2019-07-144-2/+404
|\ \ \ \ \ \ | | | | | | | | | | | | | | DOC: Document array_function at a higher level.
| * | | | | | Improve illustartion of unsupported args.Dan Allan2019-07-141-6/+10
| | | | | | |
| * | | | | | Copy editingDan Allan2019-07-142-6/+5
| | | | | | |
| * | | | | | Restore old intro, add note at top.Dan Allan2019-07-141-4/+18
| | | | | | |
| * | | | | | Add new section of custom array containers.Dan Allan2019-07-134-15/+281
| | | | | | |
| * | | | | | rephraseDan Allan2019-07-131-2/+6
| | | | | | |
| * | | | | | Add __array_function__ to user reference.Dan Allan2019-07-131-0/+115
| | | | | | |
* | | | | | | Merge pull request #13935 from eric-wieser/forbid-_add_newdocs-python-v2Matti Picus2019-07-141-6/+34
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | MAINT: Warn if `_add_newdocs.py` is used to add docstrings to pure-python objects
| * | | | | | | MAINT: Warn on the use of `_add_newdocs.py` to add docstrings to pure-python ↵Eric Wieser2019-07-141-6/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | objects This caught the duplication of docstrings between multiarray.py and _add_newdocs
* | | | | | | | Merge pull request #13710 from peterbell10/irfft-default-sizeMatti Picus2019-07-141-7/+35
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | | DOC: Add note to irfft-like functions about the default sizes
| * | | | | | | DOC: Add note to irfft-like functions about the default sizesPeter Bell2019-07-141-7/+35
| | | | | | | |
* | | | | | | | Merge pull request #13989 from patto90/missing_import_polyutilsCharles Harris2019-07-143-2/+16
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | BUG: Missing warnings import in polyutils
| * | | | | | | TST: hit the deprecationwarningpatto902019-07-141-1/+3
| | | | | | | |
| * | | | | | | check also warning messagepatto902019-07-141-2/+3
| | | | | | | |
| * | | | | | | add missing import warningspatto902019-07-131-0/+1
| | | | | | | |
| * | | | | | | add test to hit RankWarning in polyutils._fitpatto902019-07-131-2/+12
| | | | | | | |
* | | | | | | | DOC: array(obj, dtype=dt) can downcast (#13673)Abhinav Sagar2019-07-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | * update downcasting docs
* | | | | | | | Merge pull request #13914 from kianasun/update-byteswap-docMatti Picus2019-07-141-5/+18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | DOC: Update the description of byteswap
| * | | | | | | | DOC: Update the description of byteswapKexuan Sun2019-07-041-5/+18
| | |_|_|_|_|_|/ | |/| | | | | |