summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | MAINT: only run typing tests on python > 3.6 and < 3.9Josh Wilson2020-06-071-2/+5
| * | | | MAINT: avoid divide by zero in typing test causing aarch64 tests to failJosh Wilson2020-06-071-1/+1
| * | | | DOC: Add a release note about types being addedJosh Wilson2020-06-071-0/+8
| * | | | MAINT: modify mypy error line parsing to work on windowsJosh Wilson2020-06-071-2/+14
| * | | | MAINT: merge typing requirements into test requirementsJosh Wilson2020-06-072-2/+3
| * | | | MAINT: move typing tests cases into a subdirectory of numpy/testsJosh Wilson2020-06-0728-6/+6
| * | | | ENH: add type stubs from numpy-stubsJosh Wilson2020-06-0635-0/+2491
| |/ / /
* | | | Merge pull request #16446 from dgasmith/einsum_orderSebastian Berg2020-06-082-2/+48
|\ \ \ \
| * | | | BUG: fixes einsum ouput order with optimization (#14615)Daniel G. A. Smith2020-06-082-2/+48
* | | | | Merge pull request #16445 from rgommers/roadmap-updateCharles Harris2020-06-081-41/+60
|\ \ \ \ \
| * | | | | DOC: address review comments on gh-16445Ralf Gommers2020-06-061-7/+17
| * | | | | DOC: update roadmapRalf Gommers2020-06-011-39/+48
* | | | | | Merge pull request #16504 from bashtage/doc-mv-normCharles Harris2020-06-081-1/+2
|\ \ \ \ \ \
| * | | | | | DOC: Correct MV Normal sigKevin Sheppard2020-06-051-1/+2
| | |_|/ / / | |/| | | |
* | | | | | DEP: Deprecate inexact matches for mode, searchside (gh-16056)Anirudh Subramanian2020-06-087-71/+138
* | | | | | Merge pull request #16510 from madphysicist/patch-1Charles Harris2020-06-081-1/+1
|\ \ \ \ \ \
| * | | | | | DOC: Minor rounding correction in Generator.binomialJoseph Fox-Rabinovitz2020-06-061-1/+1
| |/ / / / /
* | | | | | Merge pull request #16530 from numpy/dependabot/pip/pytest-5.4.3Charles Harris2020-06-081-1/+1
|\ \ \ \ \ \
| * | | | | | MAINT: Bump pytest from 5.4.2 to 5.4.3dependabot/pip/pytest-5.4.3dependabot-preview[bot]2020-06-081-1/+1
|/ / / / / /
* | | | | | ENH: Improve the ARM cpu feature detection by parsing /proc/cpuinfo (#16321)Chunlin2020-06-082-25/+268
* | | | | | Merge pull request #16529 from charris/fix-cython-bugMatti Picus2020-06-081-1/+2
|\ \ \ \ \ \
| * | | | | | BUG: Fix cython warning in random/_common.pyx.Charles Harris2020-06-071-1/+2
|/ / / / / /
* | | | | | Merge pull request #16503 from bashtage/bug-broadcast-sizeCharles Harris2020-06-072-0/+70
|\ \ \ \ \ \
| * | | | | | BUG: Correct broadcasting when size is not NoneKevin Sheppard2020-06-052-0/+70
| |/ / / / /
* | | | | | Merge pull request #16524 from pv/f2py-threadsafe-cb-fixupCharles Harris2020-06-073-19/+22
|\ \ \ \ \ \
| * | | | | | MAINT: f2py: move thread-local declaration definition to common macroPauli Virtanen2020-06-082-19/+18
| * | | | | | DOC: add release note about f2py threadsafetyPauli Virtanen2020-06-071-0/+4
* | | | | | | Merge pull request #16522 from seiko2plus/issue_16516Charles Harris2020-06-071-3/+4
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | MAINT:ARMHF Fix detecting feature groups NEON_HALF and NEON_VFPV4Sayed Adel2020-06-071-3/+4
* | | | | | | Merge pull request #16519 from pv/f2py-threadsafe-cbCharles Harris2020-06-075-47/+206
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | TST: f2py: add test for callback threadsafetyPauli Virtanen2020-06-071-0/+50
| * | | | | | BUG: numpy/f2py: put callback globals to thread-local storagePauli Virtanen2020-06-074-47/+156
|/ / / / / /
* | | | | | Merge pull request #16520 from pv/f2py-formatting-cleanupCharles Harris2020-06-072-184/+184
|\ \ \ \ \ \
| * | | | | | STY: f2py/rules: replace \t with whitespace for readabilityPauli Virtanen2020-06-071-37/+37
| * | | | | | STY: f2py/cb_rules: replace \t by whitespace for readabilityPauli Virtanen2020-06-071-147/+147
|/ / / / / /
* | | | | | STY: trivial doc style fix in NEP 45. (#16514)Ralf Gommers2020-06-071-3/+4
* | | | | | Merge pull request #16500 from bjnath/move_c_style_linkRalf Gommers2020-06-068-19/+21
|\ \ \ \ \ \
| * | | | | | DOC: Add NEP45 and NEP29 targets, use <NEPxx> linksBen Nathanson2020-06-065-9/+9
| * | | | | | DOC: Use intersphinx for NEP referencesBen Nathanson2020-06-045-15/+17
| * | | | | | DOC: Point Contributing page to new NEP 45Ben Nathanson2020-06-042-3/+3
* | | | | | | DOC: Fixes for 18 broken links (#16472)bjnath2020-06-0617-51/+44
* | | | | | | MAINT: make Py_SET_SIZE and Py_SET_TYPE macros a bit safer (#16501)Thomas A Caswell2020-06-061-2/+2
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #15162 from seberg/reduce-axes-tryMatti Picus2020-06-0410-595/+479
|\ \ \ \ \ \
| * | | | | | BUG: The reduction output must not cause the input to be broadcastSebastian Berg2020-05-302-1/+15
| * | | | | | MAINT: Address review comments related to NPY_ITER_REDUCTION_AXISSebastian Berg2020-05-304-11/+11
| * | | | | | DOC: Slightly improve error message on incorrectly shaped reductionsSebastian Berg2020-05-111-7/+9
| * | | | | | BUG,MAINT: Simplify reduction result creation using reduce axisSebastian Berg2020-05-113-387/+160
| * | | | | | BUG: Avoid incorrect broadcasts on non-core outputs in gufuncsSebastian Berg2020-05-112-6/+22
| * | | | | | MAINT: Use reduction axis marker for einsumSebastian Berg2020-05-111-4/+2
| * | | | | | ENH: Allow specifying reduction axis in nditer/NpyIterSebastian Berg2020-05-112-12/+92