summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #20745 from bwoodsend/pyinstaller-hookCharles Harris2022-01-236-0/+113
|\
| * ENH: add hook and test for PyInstaller.bwoodsend2022-01-206-0/+113
* | Merge pull request #20840 from serge-sans-paille/feature/road-to-cxx-selectionCharles Harris2022-01-234-420/+654
|\ \
| * | Convert selection.c.src to selection.cppserge-sans-paille2022-01-174-420/+654
| * | Convert mergesort.c.src to mergesort.cppserge-sans-paille2022-01-173-512/+734
* | | Merge pull request #20858 from BvB93/vectorizeCharles Harris2022-01-232-2/+4
|\ \ \
| * | | DOC: Add a note regarding a potential future mypy plugin for dealing with lit...Bas van Beek2022-01-191-0/+2
| * | | MAINT: Relax the return-type of `np.vectorize`Bas van Beek2022-01-192-2/+2
* | | | Merge pull request #20866 from bashtage/port-clang-cl-changesCharles Harris2022-01-235-6/+10
|\ \ \ \
| * | | | ENH: Add changes that allow NumPy to compile with clang-clKevin Sheppard2022-01-205-6/+10
| | |_|/ | |/| |
* | | | DOC: Cosmetic docstring fix for numpydoc.Ross Barnowski2022-01-201-1/+1
* | | | MAINT: fix typo (#20862)Ruben Garcia2022-01-201-1/+1
|/ / /
* | | Merge pull request #20831 from bwoodsend/numpy-testing-depends-on-distutilsRalf Gommers2022-01-201-2/+2
|\ \ \
| * | | BUG: Avoid importing numpy.distutils on import numpy.testing (#20769)bwoodsend2022-01-161-2/+2
* | | | DOC: fix formatting of mean examplemgunyho2022-01-201-0/+1
* | | | Merge pull request #20397 from seiko2plus/replace_rest_unaryMatti Picus2022-01-195-266/+21
|\ \ \ \ | |_|/ / |/| | |
| * | | SIMD: replace raw AVX512 of floor/trunc/rint with universal intrinsicsSayed Adel2022-01-195-266/+21
* | | | Fixing the typoSomasree Majumder2022-01-191-1/+2
|/ / /
* | | DOC: Fix typo in meshgrid exampleEmma Simon2022-01-181-1/+1
* | | Merge pull request #20829 from serge-sans-paille/feature/road-to-cxx-mergesortCharles Harris2022-01-183-512/+734
|\ \ \
| * | | Convert mergesort.c.src to mergesort.cppserge-sans-paille2022-01-163-512/+734
* | | | Merge pull request #20834 from rjeb/doc-ndarrayargmaxmin-paramsMatti Picus2022-01-181-2/+2
|\ \ \ \
| * | | | Update ndarray argmax-argmin docstring with correct keyword and default param...Jason Thai2022-01-171-2/+2
| * | | | Update ndarray argmax+min docstrings with keepdims paramJason Thai2022-01-161-2/+2
* | | | | DOC: Restore MaskedArray.hardmask documentation (#20810)Hans Meine2022-01-181-8/+51
* | | | | Merge pull request #20821 from rafaelcfsousa/p10_enablementMatti Picus2022-01-188-16/+72
|\ \ \ \ \
| * | | | | TST: Add CPU dispatch/baseline tests for VSX4Rafael Cardoso Fernandes Sousa2022-01-172-7/+7
| * | | | | STY: Fix linter issueRafael Cardoso Fernandes Sousa2022-01-141-1/+2
| * | | | | ENH: Add CPU feature detection for VSX4 (Power10)Rafael Cardoso Fernandes Sousa2022-01-137-9/+64
* | | | | | Merge pull request #20285 from HowJMay/simd-floorMatti Picus2022-01-187-22/+163
|\ \ \ \ \ \
| * | | | | | SIMD: add universal intrinsic for round to nearestSayed Adel2021-12-196-24/+69
| * | | | | | SIMD: fix signed zero of SSE2/FloorSayed Adel2021-12-131-12/+37
| * | | | | | ENH, SIMD: add new universal intrinsics for floorHowJMay2021-12-127-3/+74
* | | | | | | MAINT: remove outdated mingw32 fseek supportRalf Gommers2022-01-181-6/+0
| |_|_|_|_|/ |/| | | | |
* | | | | | Merge pull request #15844 from dcaliste/typeMelissa Weber Mendonça2022-01-173-1/+43
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | ENH: add inline definition of access rights for Fortran typesDamien Caliste2022-01-043-1/+43
* | | | | | BUG: Fix comparator function signaturesHood Chatham2022-01-161-3/+3
| |_|_|/ / |/| | | |
* | | | | Merge pull request #20828 from serge-sans-paille/feature/road-to-cxx-heapsortCharles Harris2022-01-153-403/+620
|\ \ \ \ \
| * | | | | Convert heapsort to C++serge-sans-paille2022-01-153-403/+620
* | | | | | Merge pull request #20732 from serge-sans-paille/feature/road-to-cxx-timsortCharles Harris2022-01-154-571/+1027
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Convert timsort.c.src to C++serge-sans-paille2022-01-144-571/+1027
* | | | | | TYP: Fix pyright being unable to infer the `real` and `imag` output typeBas van Beek2022-01-151-2/+2
|/ / / / /
* | | | | Merge pull request #20818 from lpsinger/test-third-party-c-extensions-limited...Sebastian Berg2022-01-147-2/+86
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | TST: Split example package, skip limited API test for debugLeo Singer2022-01-136-18/+68
| * | | | TST: Test building third party C extensions with Py_LIMITED_APILeo Singer2022-01-132-2/+32
| * | | | BUG: Fix build of third-party extensions with Py_LIMITED_APILeo Singer2022-01-131-1/+5
* | | | | Merge pull request #20791 from honno/xp-inverse-indicesCharles Harris2022-01-132-5/+34
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Regression test for inverse indices in `array_api` set functionsMatthew2022-01-131-0/+19
| * | | | BUG: Return correctly shaped inverse indices in `array_api`Matthew2022-01-131-5/+15
* | | | | Merge pull request #20811 from DimitriPapadopoulos/repeatedCharles Harris2022-01-1325-33/+32
|\ \ \ \ \