summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | ENH: Add a mypy plugin for inferring the precision of `np.ctypeslib.c_intp`Bas van Beek2021-05-214-31/+56
* | | | | | Merge pull request #19119 from trallard/trallard/patch-gitpodCharles Harris2021-05-281-1/+3
|\ \ \ \ \ \
| * | | | | | BUG: Adjust shallow clone in the gitpod containerTania Allard2021-05-281-1/+1
| * | | | | | BUG: Adjust shallow clone in the gitpod containerTania Allard2021-05-271-1/+3
| | |_|/ / / | |/| | | |
* | | | | | 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
| * | | | | Fix lintPearu Peterson2021-05-231-1/+2
| * | | | | Apply reviewers comments. Thanks to @eric-wieser!Pearu Peterson2021-05-231-31/+9
| * | | | | BUG: revise string_from_pyobj/try_pyarr_from_string usages, fixes #18431.Pearu Peterson2021-05-104-51/+264
* | | | | | MAINT: replace imgmath with mathjax for docs (#19036)Melissa Weber Mendonça2021-05-273-3/+6
* | | | | | Merge pull request #19110 from himanshu007-creator/himanshu007-creator-patch-1Bas van Beek2021-05-261-1/+1
|\ \ \ \ \ \
| * | | | | | Update _add_newdocs.pyHimanshu2021-05-271-1/+1
|/ / / / / /
* | | | | | Merge pull request #19093 from paxcodes/add_returns_section_for_frombufferRalf Gommers2021-05-261-0/+4
|\ \ \ \ \ \
| * | | | | | DOC: add a "Returns" section for `np.frombuffer`Pax2021-05-251-0/+4
* | | | | | | Merge pull request #19099 from pope1ni/patch-1Matti Picus2021-05-261-4/+4
|\ \ \ \ \ \ \
| * | | | | | | Updated doc/source/reference/arrays.scalars.rstNick Pope2021-05-251-4/+4
* | | | | | | | Merge pull request #19096 from charris/fix-numpy-versionMatti Picus2021-05-261-2/+9
|\ \ \ \ \ \ \ \
| * | | | | | | | BUG: Fix setup.py to work in maintenance branches.Charles Harris2021-05-251-2/+9
* | | | | | | | | Merge pull request #19086 from charris/fix-linter-run-conditionSebastian Berg2021-05-251-1/+1
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | |
| * | | | | | | | BUG: Linter should on run on pull requests.Charles Harris2021-05-241-1/+1
| |/ / / / / / /
* | | | | | | | Merge pull request #19090 from default-303/LGTM_alertsCharles Harris2021-05-259-12/+1
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | |
| * | | | | | | MAINT: removed unused imports listed in LGTMdefault-3032021-05-254-1/+6
| * | | | | | | MAINT: removed unused imports listed in LGTMdefault-3032021-05-2413-18/+2
* | | | | | | | Merge pull request #19092 from BvB93/generic-alias-bugCharles Harris2021-05-253-5/+9
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | |
| * | | | | | | MAINT: Change the variance of the `npt.ArrayLike` to covariantBas van Beek2021-05-253-4/+4
| * | | | | | | BUG: Fixed an issue wherein `_GenericAlias.__getitem__` would raise for under...Bas van Beek2021-05-252-1/+5
|/ / / / / / /
* | | | | | | Merge pull request #19089 from melissawm/add-hist2d-exampleMatti Picus2021-05-251-0/+34
|\ \ \ \ \ \ \
| * | | | | | | DOC: Add example to histogram2d docstringmelissawm2021-05-241-0/+34
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #19087 from melissawm/savez-kwargMatti Picus2021-05-251-0/+4
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | DOC: Add note to savez about naming variables with keyword `file`.melissawm2021-05-241-0/+4
|/ / / / / /
* | | | | | Merge pull request #19082 from numpy/dependabot/pip/hypothesis-6.13.4Charles Harris2021-05-241-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | MAINT: Bump hypothesis from 6.12.0 to 6.13.4dependabot[bot]2021-05-241-1/+1
|/ / / / /
* | | | | Merge pull request #19071 from cmichal2/mainMatti Picus2021-05-231-13/+9
|\ \ \ \ \
| * | | | | Change fix of cpu_popcnt.c to use _mm_popcnt_u64/_mm_popcnt_u32 on GCCCarl Michal2021-05-231-18/+8