summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Update wheel requirement from <=0.35.1 to <0.36.3dependabot/pip/wheel-lt-0.36.3dependabot-preview[bot]2020-12-141-1/+1
| | | | | | | | Updates the requirements on [wheel](https://github.com/pypa/wheel) to permit the latest version. - [Release notes](https://github.com/pypa/wheel/releases) - [Changelog](https://github.com/pypa/wheel/blob/master/docs/news.rst) - [Commits](https://github.com/pypa/wheel/compare/0.5...0.36.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Merge pull request #17993 from Carreau/doc-np.kronMatti Picus2020-12-141-2/+2
|\ | | | | [DOC] np.kron use double backticks for non-references
| * [DOC] np.kron use double backticks for non-refsMatthias Bussonnier2020-12-131-2/+2
|/ | | | | | Some part of the docstring were between simple backticks which are therefore marked as cross-reference, while I belive the intended role is likely verbatim.
* Merge pull request #17992 from Carreau/doc-xCharles Harris2020-12-131-1/+1
|\ | | | | DOC: Replace verbatim with reference to local parameter
| * [DOC] Replace verbatim to reference to local parameterMatthias Bussonnier2020-12-131-1/+1
| | | | | | | | | | | | The rest of the docstring and other function tend to have this convention and sphinx – as well as other tools – will be able to infer this actually refers to one of the function parameters.
* | DOC: Rename basics to fundamentals + added description (#17889)Ryan C Cooper2020-12-131-5/+9
|/
* Merge pull request #17974 from charris/fix-versioneer-dirtyCharles Harris2020-12-123-12/+15
|\ | | | | BLD: Fixes for versioneer and setup.py sdist.
| * BUG: Replace f-string in root setup.pyCharles Harris2020-12-121-4/+4
| |
| * BUG: Make sdist use distutils.Charles Harris2020-12-101-5/+8
| | | | | | | | If sdist uses setuptools there can be problems, see gh-7127.
| * MAINT: Don't include "dirty" in versioneer generated versions.Charles Harris2020-12-102-3/+3
| | | | | | | | | | | | | | | | We patch the LICENSE file for both sdist and wheel releases, making them all "dirty", i.e., containing files that have not been committed. Having "dirty" in the product name is bad marketing and the versioneer tool does not have an option or style that will omit that bit of information, so patch the versioneer files to make that tag an empty string.
* | Merge pull request #17888 from spaceofmiah/patch-1Ralf Gommers2020-12-121-1/+1
|\ \ | | | | | | DOC: Correct sentence/statement composition
| * | Correct sentence/statement compositionAgbonze Osazuwa2020-12-011-1/+1
| | | | | | | | | | | | | | | Incorrect statement spotted *In the simplest example of broadcasting, the scalar ``b`` is stretched to become an array ~of with the same~ shape as ``a`` so the shapes are compatible for element-by-element multiplication.*
* | | Merge pull request #17906 from fxcoudert/patch-1Ralf Gommers2020-12-121-1/+1
|\ \ \ | | | | | | | | BUG: Fix a MacOS build failure
| * | | Update gnu.pyFX Coudert2020-12-031-1/+1
| | | |
* | | | Merge pull request #17955 from Carreau/fix-17944Charles Harris2020-12-111-7/+7
|\ \ \ \ | | | | | | | | | | DOC: Replace {var} in docstrings type annotation with `scalar or None`.
| * | | | [DOC] Replace {var} in docstrings type annotation with `scalar or None`.Matthias Bussonnier2020-12-071-7/+7
| | | | | | | | | | | | | | | | | | | | Closes #17944
* | | | | Merge pull request #17981 from BvB93/flatiterCharles Harris2020-12-116-33/+56
|\ \ \ \ \ | | | | | | | | | | | | ENH: Add proper dtype-support to `np.flatiter`
| * | | | | STY: Fixed a typo: `ofthe` -> `of the`Bas van Beek2020-12-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Addresses https://github.com/numpy/numpy/pull/17981#discussion_r541018879 Co-Authored-By: Charles Harris <charlesr.harris@gmail.com>
| * | | | | TST: Updated the `__array__` typing testsBas van Beek2020-12-112-6/+6
| | | | | |
| * | | | | TST: Updated the `np.flatiter` typing testsBas van Beek2020-12-112-9/+14
| | | | | |
| * | | | | ENH: Add dtype-support for `np.flatiter`Bas van Beek2020-12-111-7/+10
| | | | | |
| * | | | | ENH: Add dtype-support for the `__array__` protocolBas van Beek2020-12-112-11/+26
| | | | | |
* | | | | | Merge pull request #17968 from BvB93/dtype-typevarCharles Harris2020-12-113-5/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | ENH: Use more typevars in `np.dtype`
| * | | | | | TST: Add new tests for `dtype` methodsBas van Beek2020-12-092-0/+16
| | | | | | |
| * | | | | | MAINT: Use `dtype[Any]` instead of `dtype`Bas van Beek2020-12-091-1/+1
| | | | | | |
| * | | | | | ENH: Replace `dtype` with the `_DType` typevarBas van Beek2020-12-091-4/+4
| | | | | | |
* | | | | | | Merge pull request #17978 from charris/update-requirementsCharles Harris2020-12-112-2/+2
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | MAINT: Update test_requirements and release_requirements.
| * | | | | | MAINT: Update test_requirements and release_requirements.Charles Harris2020-12-102-2/+2
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | Install the correct versions of wheel and towncrier.
* | | | | | Merge pull request #17782 from Qiyu8/einsum-muladdMatti Picus2020-12-111-101/+82
|\ \ \ \ \ \ | |/ / / / / |/| | | | | SIMD: Optimize the performance of einsum's submodule multiply by using universal intrinsics
| * | | | | add guard #ifndef NPY_DISABLE_OPTIMIZATIONQiyu82020-11-191-1/+4
| | | | | |
| * | | | | optimize the remaining elements using npyv_load_tillzQiyu82020-11-191-19/+8
| | | | | |
| * | | | | fix misleading commentQiyu82020-11-161-1/+1
| | | | | |
| * | | | | Optimize the performance of multiplyQiyu82020-11-091-102/+91
| | | | | |
* | | | | | Merge pull request #17971 from seiko2plus/issue_17969Matti Picus2020-12-091-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | BUG, SIMD: Fix direactive check for AVX512BW of intrinsics npyv_tobits_*
| * | | | | | BUG, SIMD: Fix direactive check for AVX512BW of intrinsics npyv_tobits_*Sayed Adel2020-12-091-2/+2
|/ / / / / /
* | | | | | Merge pull request #17966 from MaiaKaplan/arange_keywordSebastian Berg2020-12-091-0/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | BUG: Add missing decref to arange
| * | | | | | Add missing decref to arange, refs 17878Maia Kaplan2020-12-091-0/+1
| | | | | | |
* | | | | | | Merge pull request #17795 from BvB93/x-likeMatti Picus2020-12-094-28/+33
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | ENH: Add two new `_<X>Like` unions
| * | | | | | | MAINT: Simplify existing `_<X>Like` annotationsBas van Beek2020-11-172-26/+25
| | | | | | | |
| * | | | | | | ENH: Add `_UIntLike` and `_TD64Like`Bas van Beek2020-11-172-1/+5
| | | | | | | |
| * | | | | | | ENH: Add `_BoolLike` to the union defining `_IntLike`Bas van Beek2020-11-171-1/+3
| | | | | | | |
* | | | | | | | Merge pull request #17960 from seiko2plus/ci_baselineMatti Picus2020-12-092-3/+28
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | TST, BUILD: Add a native x86 baseline build running on ubuntu-20.04
| * | | | | | | | TST: Fix passing build options when `--debug-info` is enabledSayed Adel2020-12-081-3/+3
| | | | | | | | |
| * | | | | | | | TST, BUILD: Add a native x86 baseline build running on ubuntu-20.04Sayed Adel2020-12-081-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to build and test NumPy against the maximum supported CPU features by the compiler and the running machine
* | | | | | | | | Merge pull request #17956 from charris/version-with-versioneerMatti Picus2020-12-0913-135/+2479
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ENH: Use versioneer to manage numpy versions.
| * | | | | | | | | ENH: Use versioneer to manage numpy versions.Charles Harris2020-12-0813-135/+2479
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the number of commits since the 1.21.0 branch was started and 'aa0453721f'. The chosen form may be specified in the 'setup.cfg' file. This PR adds two new files 'numpy/_version.py' and 'numpy/version.py'. The latter is kept because it is part of the public API and is actually used by some downstream projects, but it is no longer dynamically created. See https://github.com/python-versioneer/python-versioneer/ for more information.
* | | | | | | | | Merge pull request #17789 from seiko2plus/npyv_new_intrinsic_pk0Matti Picus2020-12-0914-40/+446
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ENH, SIMD: Add new NPYV intrinsics pack(0)
| * | | | | | | | | BLD, SIMD: Add check for inline ASM VSX supportSayed Adel2020-11-172-1/+37
| | | | | | | | | |
| * | | | | | | | | ENH, SIMD: Add new NPYV intrinsics pack(0)Sayed Adel2020-11-1712-39/+409
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add bitfield conversion for boolean vectors - add reverse elements of each 64-bit lane - add testing cases
* | | | | | | | | | Merge pull request #17950 from Brunochris13/masterCharles Harris2020-12-081-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | BUG: Removed empty String from Nag Compiler's Flags