summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* BUG: stack_arrays fails for subdtypesEric Wieser2017-07-012-5/+34
* BUG: recfunctions.join_by fails when key is a subdtypeEric Wieser2017-07-012-11/+61
* BUG: recfunctions.join_by fails for colliding values with different dtypesEric Wieser2017-07-012-11/+25
* MAINT: use set operators for brevityEric Wieser2017-07-011-3/+3
* Merge pull request #9325 from rgommers/nf-badgeCharles Harris2017-06-281-0/+2
|\
| * DOC: add a NumFOCUS badge to README.mdRalf Gommers2017-06-281-0/+2
|/
* Merge pull request #9322 from eric-wieser/ma-astypeahaldane2017-06-272-7/+12
|\
| * BUG: MaskedArray.astype fails for non-trivial structured typesEric Wieser2017-06-272-7/+12
* | Merge pull request #9302 from eric-wieser/fix-fillvalueahaldane2017-06-274-108/+139
|\ \
| * | TST: Verify that join_by doesn't choke on subdtypesEric Wieser2017-06-271-0/+10
| * | BUG: Overhaul *_fill_value functionsEric Wieser2017-06-273-82/+87
| * | MAINT: Remove cycle between _check_fill_value and default_fill_valueEric Wieser2017-06-271-21/+17
| * | TST: Verify that sorting subarrays is fixedEric Wieser2017-06-271-0/+14
| * | MAINT: Better names in ma.sort testEric Wieser2017-06-271-12/+12
| * | BUG: Fix gh-8069Eric Wieser2017-06-272-1/+15
| * | MAINT: De-duplicate ma.m(ax|in)imum_fill_valueEric Wieser2017-06-271-26/+18
| |/
* | Merge pull request #9316 from seberg/runtest-devmodeCharles Harris2017-06-272-4/+11
|\ \
| * | MAINT: Fix spelling of develop.Charles Harris2017-06-271-2/+2
| * | TST: Move nose plugin initialization outside of testing loopSebastian Berg2017-06-271-3/+3
| * | TST: raise_warnings="develop" as default in `runtests.py -t ...`Sebastian Berg2017-06-261-1/+8
* | | Merge pull request #9324 from adeak/doc_gitfetch_minorfixCharles Harris2017-06-271-1/+1
|\ \ \
| * | | DOC: Fix missing asterisks in git development_setup doc pageAndras Deak2017-06-271-1/+1
* | | | Merge pull request #9323 from adeak/doc_isnat_minorfixEric Wieser2017-06-271-0/+1
|\ \ \ \ | |/ / / |/| | |
| * | | DOC: Add $PARAMS to the isnat docstringAndras Deak2017-06-271-0/+1
|/ / /
* | | Merge pull request #9280 from rolk/9280_msys2_baseprefCharles Harris2017-06-271-4/+16
|\ \ \
| * | | BUG: Handle MinGW module compilation in Py2.7 venvsRoland Kaufmann2017-06-221-1/+9
| * | | BUG: Make extensions compilable with MinGW on Py2.7Roland Kaufmann2017-06-221-3/+7
* | | | Merge pull request #9310 from juliantaylor/nonzero-fixCharles Harris2017-06-272-1/+12
|\ \ \ \ | |_|_|/ |/| | |
| * | | BUG: fix wrong ndim used in empty where checkJulian Taylor2017-06-272-1/+12
* | | | Merge pull request #9285 from charris/fix-intel-compilationCharles Harris2017-06-263-4/+24
|\ \ \ \
| * | | | BUG: Fix Intel compilation on Unix.Charles Harris2017-06-263-4/+24
| | |/ / | |/| |
* | | | MAINT: Fix alerts from http://lgtm.com (#9292)Jean Helie2017-06-264-50/+41
* | | | Merge pull request #9281 from MSeifert04/array_vs_matrix_docEric Wieser2017-06-261-8/+12
|\ \ \ \ | |_|_|/ |/| | |
| * | | DOC: add @ operator in array vs. matrix comparison doc [skip ci]Michael Seifert2017-06-231-8/+12
| |/ /
* | | Merge pull request #9220 from eric-wieser/simplify-nanfuncsCharles Harris2017-06-221-43/+53
|\ \ \
| * | | MAINT: Factor out code duplicated by nanmedian and nanpercentileEric Wieser2017-06-211-43/+53
* | | | Merge pull request #9242 from drumstok/tensordotCharles Harris2017-06-223-5/+22
|\ \ \ \ | |_|/ / |/| | |
| * | | ENH: Make 0-length dim handling of tensordot consistent with dot/einsumPim de Haan2017-06-223-5/+22
|/ / /
* | | Merge pull request #9268 from rgommers/more-nose-pluginsJulian Taylor2017-06-213-4/+48
|\ \ \
| * | | TST: add a --timer argument to runtests.Ralf Gommers2017-06-211-1/+15
| * | | DOC: add test timing feature to the 1.14.0 release notes.Ralf Gommers2017-06-211-0/+7
| * | | ENH: testing: add a "timer" keyword to ``Tester.test`` to time slow tests.Ralf Gommers2017-06-211-3/+15
| * | | ENH: testing: load available nose plugins that are external to nose itselfRalf Gommers2017-06-211-0/+11
|/ / /
* | | ENH: Release the GIL in einsum() special-cased loops (#9246)Antoine Pitrou2017-06-202-0/+19
* | | Merge pull request #9271 from rgommers/setuppy-forceJulian Taylor2017-06-201-0/+1
|\ \ \
| * | | BUG: fix issue when using ``python setup.py somecommand --force``.Ralf Gommers2017-06-201-0/+1
|/ / /
* | | Merge pull request #9259 from soupault/fix_9251Charles Harris2017-06-182-6/+20
|\ \ \
| * | | MAINT: Use neq instead of xor in diffEgor Panfilov2017-06-171-1/+1
| * | | BUG: Switched to xor for bool arrays in diff, added corresponding testsEgor Panfilov2017-06-172-6/+20
* | | | Merge pull request #9266 from charris/fix-unused-variableCharles Harris2017-06-181-1/+0
|\ \ \ \