summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #19188 from seberg/accept-nep35Charles Harris2021-06-071-5/+1
|\
| * NEP: Accept NEP 35 as finalSebastian Berg2021-06-071-5/+1
* | Merge pull request #19174 from seberg/avoid-flexible-logic-in-can-castCharles Harris2021-06-074-99/+189
|\ \
| * | MAINT,BUG: Adapt `castingimpl.casting` to denote a minimal levelSebastian Berg2021-06-054-99/+189
| |/
* | Update numpy/lib/index_tricks.pyAhmet Can Solak2021-06-071-1/+2
* | Update numpy/lib/index_tricks.pyAhmet Can Solak2021-06-071-1/+2
* | DOC: docstring fix implemented for ndindex class under index_tricksAhmetCanSolak2021-06-071-2/+2
* | Merge pull request #19016 from ReallyNiceGuy/mainSebastian Berg2021-06-073-3/+21
|\ \
| * | BUG: Update coordinates on PyArray_ITER_GOTO1DMarco Aurelio da Costa2021-05-203-3/+21
* | | Merge pull request #19140 from BvB93/astypeCharles Harris2021-06-063-47/+143
|\ \ \
| * | | TST: Update the `ndarray`/`generic` typing testsBas van Beek2021-05-312-28/+37
| * | | ENH: Add dtype-support to 3 `generic`/`ndarray` methodsBas van Beek2021-05-311-19/+106
* | | | Merge pull request #19177 from i-shenl/i-shenl/set-icc-c99Charles Harris2021-06-061-1/+1
|\ \ \ \
| * | | | Set c99 to intel icc compiler so numpy will buildi-shenl2021-03-091-1/+1
* | | | | MAINT: Added a missing `sys.version` checkBas van Beek2021-06-054-7/+4
* | | | | REV,BUG: Replace `NotImplemented` with `typing.Any`Bas van Beek2021-06-058-97/+97
* | | | | Merge pull request #19170 from seberg/undo-string-promotion-warningCharles Harris2021-06-056-94/+34
|\ \ \ \ \
| * | | | | API: Delay string and number promotion deprecation/future warningSebastian Berg2021-06-046-94/+34
| | |_|_|/ | |/| | |
* | | | | MAINT: Provide more type-safety by replacing `Any` with `object`Bas van Beek2021-06-041-4/+11
* | | | | BUG: Fixe an issue wherein `_GenericAlias` could raise for non-tuple parametersBas van Beek2021-06-042-1/+7
|/ / / /
* | | | TST fix comment of assert+indentationJérôme Kieffer2021-05-311-2/+2
* | | | TST Fix typoJérôme Kieffer2021-05-311-2/+2
* | | | TST: fix pylintJérôme Kieffer2021-05-311-2/+4
* | | | BUG: re-introduce short-version as it wasJérôme Kieffer2021-05-312-1/+9
* | | | expose `short_version` as previously in version.pyJérôme Kieffer2021-05-311-0/+1
| |/ / |/| |
* | | DOC: replace np.ma functions' return types with `MaskedArray` (#18964)Pax2021-05-291-11/+77
* | | Merge pull request #19130 from ganesh-k13/ENH_18490_CPU_feature_showRalf Gommers2021-05-291-0/+20
|\ \ \
| * | | ENH: SIMD architectures to show_configGanesh Kathiresan2021-05-281-0/+20
* | | | Merge pull request #19062 from BvB93/ctypes-pluginCharles Harris2021-05-287-34/+75
|\ \ \ \
| * | | | MAINT: Refactor the `c_intp`-type inferring functionBas van Beek2021-05-251-3/+9
| * | | | TST: Add typing tests for `np.ctypeslib.c_intp` and its mypy pluginBas van Beek2021-05-213-3/+13
| * | | | ENH: Add a mypy plugin for inferring the precision of `np.ctypeslib.c_intp`Bas van Beek2021-05-214-31/+56
* | | | | Merge pull request #19124 from BvB93/poly1dCharles Harris2021-05-282-12/+33
|\ \ \ \ \
| * | | | | TST: Update the `poly1d.__getitem__` and `__eq__` testsBas van Beek2021-05-281-5/+26
| * | | | | BUG: Fixed an issue wherein `poly1d.__getitem__` could return scalars of the ...Bas van Beek2021-05-281-7/+7
* | | | | | Merge pull request #19098 from seiko2plus/issue_19084Charles Harris2021-05-2820-22/+284
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | BUG, SIMD: Fix detect host/native CPU features on ICC during compile-timeSayed Adel2021-05-2620-22/+284
* | | | | | Merge pull request #19118 from BvB93/styCharles Harris2021-05-289-232/+231
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | STY: Use the PEP 604 pipe operator over `Optional` and `Union`Bas van Beek2021-05-274-86/+84
| * | | | | STY: Use `GenericAlias` to get rid of string-based literal expressionsBas van Beek2021-05-273-28/+37
| * | | | | STY: Replace all `Any`-based runtime placeholders with `NotImplemented`Bas van Beek2021-05-273-73/+73
| * | | | | MAINT: Unconditionally import from `typing_extensions` while static type chec...Bas van Beek2021-05-271-5/+1
| * | | | | ENH: Add a global constant to `numpy.typing` denoting whether or not `typing_...Bas van Beek2021-05-276-43/+39
* | | | | | Merge pull request #18759 from pearu/gh-18431-string_from_pyobjPearu Peterson2021-05-285-59/+252
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Minor fixesPearu Peterson2021-05-262-3/+3
| * | | | | Update numpy/f2py/rules.pyPearu Peterson2021-05-261-1/+1
| * | | | | Fix lintPearu Peterson2021-05-261-1/+2
| * | | | | Add internal check for array contiguity.Pearu Peterson2021-05-261-0/+1
| * | | | | MAINT: apply sizeof(char)==1Pearu Peterson2021-05-263-4/+4
| * | | | | Apply reviewer nitPearu Peterson2021-05-231-2/+1