summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #12391 from mattip/deprecate-uniqueCharles Harris2018-11-151-0/+3
|\ | | | | DEP: raise on a call to deprecated numpy.lib.function_base.unique
| * DEP: remove deprecated numpy.lib.function_base.uniquemattip2018-11-151-0/+3
| |
* | DOC: Add release notes for ctypes improvementsEric Wieser2018-11-151-0/+15
|/ | | | Fixes gh-12272
* NEP: move nep 15 from accepted to finalmattip2018-11-131-1/+1
|
* Merge pull request #12362 from shoyer/disable-array-function-by-defaultCharles Harris2018-11-121-0/+9
|\ | | | | MAINT: disable `__array_function__` dispatch unless environment variable set
| * MAINT: disable __array_function__ dispatch unless environment variable setStephan Hoyer2018-11-101-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | Per discussion on the mailing list, __array_function__ isn't quite ready to release as part of NumPy 1.16: https://mail.python.org/pipermail/numpy-discussion/2018-November/078949.html We'd like to improve performance a bit, and it will be easier to support introspection on NumPy functions if we support Python 3 only. So for now, you need to set the environment variable ``NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1`` to enable dispatching.
* | Merge pull request #8955 from eric-wieser/obj-identityMatti Picus2018-11-122-3/+46
|\ \ | | | | | | ENH: Allow ufunc.identity to be any python object
| * | DOC: Add release notes on changes to ufunc.identityEric Wieser2018-11-121-0/+19
| | |
| * | ENH: Allow ufunc.identity to be any python objectEric Wieser2018-11-122-3/+27
| | |
* | | NEP: clarify the purpose of "types" in __array_function__Stephan Hoyer2018-11-101-2/+3
| |/ |/| | | | | | | Per our discussion on the mailing list: https://mail.python.org/pipermail/numpy-discussion/2018-November/078911.html
* | Merge pull request #11916 from mattip/deprecate-set_numeric_opsCharles Harris2018-11-093-2/+13
|\ \ | | | | | | DEP: deprecate np.set_numeric_ops and friends
| * | DEP: deprecate np.set_numeric_ops and friendsmattip2018-10-213-2/+13
| | |
* | | DOC: Update RELEASE_WALKTHROUGH.rst.txt.Charles Harris2018-11-091-1/+1
| |/ |/| | | | | | | | | | | The `write_release_and_log` task has been removed from the pavement file. Update the release walkthrough to use `write_release` instead. [ci skip]
* | Merge pull request #12250 from mattip/add-docs-to-tocRalf Gommers2018-11-0411-335/+46
|\ \ | | | | | | DOC: add missing docs
| * | DOC: move C style guide to dev sectionmattip2018-10-253-1/+1
| | |
| * | DOC: remove duplicate and outdated DOCmattip2018-10-252-200/+0
| | |
| * | DOC: remove old docs while adding bits of it where appropriate (part one)mattip2018-10-253-129/+19
| | |
| * | DOC: fixes from reviewmattip2018-10-253-4/+7
| | |
| * | DOC: add missing docsmattip2018-10-237-3/+21
| | |
* | | DOC: NumPy 1.15.4 post release documentation update.Charles Harris2018-11-043-0/+60
| | | | | | | | | | | | [ci skip]
* | | ENH: Improve support for pathlib.Path objects in load functions (#11348)Paul Müller2018-11-011-0/+7
| | | | | | | | | * ENH: Improve support for pathlib.Path objects in more functions
* | | Merge pull request #12268 from mattip/broadcast-tutorialRalf Gommers2018-10-317-1/+234
|\ \ \ | | | | | | | | DOC: add broadcasting article from scipy old-wiki
| * | | DOC: fixes from review, fix referencesmattip2018-10-311-4/+4
| | | |
| * | | DOC: add broadcasting article from scipy old-wikimattip2018-10-267-1/+234
| | | |
* | | | Merge pull request #12279 from mattip/nep-0027-finalMatti Picus2018-10-311-3/+4
|\ \ \ \ | | | | | | | | | | NEP: tweak and mark NEP 0027 as final
| * | | | tweak and mark NEP 0027 as finalmattip2018-10-271-3/+4
| |/ / /
* | | | Merge pull request #12120 from tylerjereddy/remainder_timedelta64Stefan van der Walt2018-10-302-0/+9
|\ \ \ \ | | | | | | | | | | ENH: add timedelta modulus operator support (mm)
| * | | | ENH: add timedelta modulusTyler Reddy2018-10-152-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * added support for modulus operator with timedelta operands; type signature is mm->m
* | | | | Merge pull request #12236 from mattip/nan-warningsCharles Harris2018-10-291-6/+7
|\ \ \ \ \ | | | | | | | | | | | | BUG: maximum, minimum no longer emit warnings on NAN
| * | | | | DOC: revise release notemattip2018-10-261-6/+7
| | |_|_|/ | |/| | |
* | | | | DOC: update release notes with np.take improvement.Stan Seibert2018-10-291-0/+5
| | | | |
* | | | | NEP: revise note for NEP 27Stephan Hoyer2018-10-271-7/+9
| |_|/ / |/| | |
* | | | Merge pull request #12251 from shoyer/array-function-error-msgAllan Haldane2018-10-251-0/+9
|\ \ \ \ | | | | | | | | | | MAINT: improved error message when no __array_function__ implementation found
| * | | | DOC: document __module__ updates for 1.16Stephan Hoyer2018-10-251-0/+9
| | |_|/ | |/| |
* | | | Merge pull request #11971 from hmaarrfk/block_single_concatenate_callAllan Haldane2018-10-231-0/+8
|\ \ \ \ | |/ / / |/| | | MAINT: Block algorithm with a single copy per call to `block`
| * | | DOC: Add a release note about the slice based blocking algorithmMark Harfouche2018-10-201-0/+8
| |/ /
* | | DOC: Update docs after NumPy 1.15.3 release.Charles Harris2018-10-224-2/+85
|/ / | | | | | | | | | | | | | | - Forward port 1.15.3-changelog.rst - Forward port 1.15.3-notes.rst - Minor fixes to RELEASE_WALKTHROUGH.rst.txt [ci skip]
* | Merge pull request #11175 from mhvk/gufunc-signature-modification2Matti Picus2018-10-193-26/+124
|\ \ | | | | | | ENH: Generalized ufunc signature expansion for frozen and flexible dimensions
| * | MAINT: changes from reviewmattip2018-10-151-1/+1
| | |
| * | DOC: tweak docs from reviewmattip2018-10-121-3/+3
| | |
| * | MAINT: formatting, remove version, rework flagsmattip2018-10-112-16/+21
| | |
| * | :DOC: update to reflect API changesmattip2018-10-082-9/+11
| | |
| * | ENH: increment and use NPY_API_VERSION in PyUFuncObject->versionmattip2018-10-071-0/+2
| | |
| * | DOC: warn about directly using PyUFuncObject and PyArray_Descrmattip2018-09-171-3/+20
| | |
| * | DOC: update for changes in d8a8e4536mattip2018-09-161-5/+4
| | |
| * | merge master into gufunc-signature-modification2mattip2018-09-153-19/+59
| |\ \
| * | | MAINT: cleanup from reviewmattip2018-09-121-0/+1
| | | |
| * | | Merge 'master' into branchmattip2018-09-1235-364/+1723
| |\ \ \
| * | | | DOC: Release note for flexible dimensions.Marten van Kerkwijk2018-07-171-0/+24
| | | | |
| * | | | DOC: Release notes for frozen dimensions.Marten van Kerkwijk2018-07-171-0/+15
| | | | |