summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | BUG: Revert #10229 to fix DLL loads on Windows.Charles Harris2018-06-291-13/+3
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #11455 from mhvk/bench-add-lcm-gcdMarten van Kerkwijk2018-06-291-9/+11
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | BENCH: belated addition of lcm, gcd to ufunc benchmark.Marten van Kerkwijk2018-06-291-9/+11
| | |_|/ / | |/| | |
* | | | | Merge pull request #11406 from mattip/einsum-out-is-resCharles Harris2018-06-292-18/+15
|\ \ \ \ \
| * | | | | MAINT: cleanup ret assignmentmattip2018-06-271-20/+7
| * | | | | check for unlikely error in Assign_Zeromattip2018-06-241-1/+3
| * | | | | BUG: ensure ret is out in einsummattip2018-06-212-1/+9
* | | | | | Merge pull request #11425 from eric-wieser/where-nonzero-docsMarten van Kerkwijk2018-06-294-59/+72
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | DOC: Clear up confusion between np.where(cond) and np.where(cond, x, y)Eric Wieser2018-06-294-59/+72
| | |_|_|/ | |/| | |
* | | | | Merge pull request #11338 from mhvk/ufunc-override-call-class-only-once-organ...Marten van Kerkwijk2018-06-284-78/+206
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | MAINT: Split off getting overrides and checking for them.Marten van Kerkwijk2018-06-283-76/+144
| * | | | MAINT: Ensure __array_ufunc__ on given class is only called once.Marten van Kerkwijk2018-06-282-9/+69
|/ / / /
* | | | Merge pull request #11434 from rgommers/pypi-classifierCharles Harris2018-06-271-0/+1
|\ \ \ \
| * | | | MAINT: add PyPI classifier for Python 3.7Ralf Gommers2018-06-271-0/+1
|/ / / /
* | | | Merge pull request #11347 from mattip/less-sphinx-warningsRalf Gommers2018-06-2712-39/+58
|\ \ \ \
| * | | | fixes from reviewmattip2018-06-244-28/+9
| * | | | DOC: typos, small fixesmattip2018-06-155-17/+18
| * | | | DOC: quiet warnings about "document not in any toctree"mattip2018-06-154-3/+9
| * | | | use `:orphan:` to quiet warnings when building documentationmattip2018-06-153-0/+31
* | | | | DOC: Update einsum docs (#11234)attack682018-06-272-180/+358
* | | | | Merge pull request #11424 from eric-wieser/empty-svdseberg2018-06-273-17/+25
|\ \ \ \ \
| * | | | | ENH: Allow use of svd on empty arraysEric Wieser2018-06-273-17/+25
| | |/ / / | |/| | |
* | | | | Merge pull request #11428 from eric-wieser/deprecate-normed-1.15.0Charles Harris2018-06-272-1/+5
|\ \ \ \ \
| * | | | | BUG: Fix incorrect deprecation logic for histogram(normed=...)Eric Wieser2018-06-262-1/+5
* | | | | | DOC: additional revision for NEP-18 (__array_function__) (#11374)Stephan Hoyer2018-06-271-149/+355
| |/ / / / |/| | | |
* | | | | Merge pull request #11335 from pvanmulbregt/stride123Matti Picus2018-06-251-9/+5
|\ \ \ \ \
| * | | | | DOC: Change array lengths/entries in an example to reduce confusion.Paul van Mulbregt2018-06-141-9/+5
* | | | | | DOC: major revision of NEP 21, advanced indexing (#11414)Stephan Hoyer2018-06-251-119/+240
* | | | | | Merge pull request #11383 from mattip/recreate-8717Eric Wieser2018-06-244-15/+30
|\ \ \ \ \ \
| * | | | | | fixes from reviewmattip2018-06-213-6/+7
| * | | | | | ENH: Allow size=0 in numpy.random.choicemattip2018-06-194-15/+29
* | | | | | | Merge pull request #11409 from charris/update-readme-pytestMatti Picus2018-06-221-1/+6
|\ \ \ \ \ \ \
| * | | | | | | DOC: Update testing section of README.Charles Harris2018-06-221-1/+6
| | |_|_|_|_|/ | |/| | | | |
* | | | | | | Merge pull request #11405 from mhvk/correct_scalar_comparisonMarten van Kerkwijk2018-06-213-9/+22
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | |
| * | | | | | BUG: Ensure comparisons on scalar strings pass without warning.Marten van Kerkwijk2018-06-213-9/+22
|/ / / / / /
* | | | | | Merge pull request #11282 from mhvk/array-comparison-not-implementeduntagged-65f99747b229ae7de4ccMarten van Kerkwijk2018-06-214-223/+158
|\ \ \ \ \ \
| * | | | | | MAINT: move failure code to its own function.Marten van Kerkwijk2018-06-191-85/+110
| * | | | | | DOC: add release note for change in output of comparison ufuncs.Marten van Kerkwijk2018-06-191-0/+10
| * | | | | | MAINT: move comparison operator special-handling out of ufunc parsing.Marten van Kerkwijk2018-06-183-223/+123
* | | | | | | Merge pull request #11340 from eric-wieser/fix-sctypeDict-clongdoubleMarten van Kerkwijk2018-06-212-22/+34
|\ \ \ \ \ \ \
| * | | | | | | BUG: f8 randomly points to double or longdouble depending on non-deterministi...Eric Wieser2018-06-142-20/+30
| * | | | | | | MAINT: Replace ifs with assertions, since those conditions are never hitEric Wieser2018-06-141-24/+26
* | | | | | | | Merge pull request #6256 from seberg/indexing-nepMatti Picus2018-06-201-0/+537
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | |
| * | | | | | | NEP: Add proposal for oindex and vindex.Sebastian Berg2018-06-201-0/+537
|/ / / / / / /
* | | | | | | Merge pull request #11390 from charris/update-npyconfigRalf Gommers2018-06-211-0/+1
|\ \ \ \ \ \ \
| * | | | | | | REL: Update numpyconfig.h for 1.15.Charles Harris2018-06-201-0/+1
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #11391 from charris/update-mailmapRalf Gommers2018-06-211-2/+13
|\ \ \ \ \ \ \
| * | | | | | | MAINT: Update mailmapCharles Harris2018-06-201-2/+13
* | | | | | | | Merge pull request #11385 from toslunar/enh-scalar-squeezeCharles Harris2018-06-202-12/+18
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Revert "Fix doc on squeeze in arrays.scalars"Toshiki Kataoka2018-06-211-0/+1