Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DOC: Explain the new exception behavior of `np.dot` when its types cannot be ↵ | John Kirkham | 2016-01-15 | 1 | -0/+14 |
| | | | | cast to a common type. | ||||
* | Merge pull request #6912 from gfyoung/asarray_order | Charles Harris | 2016-01-14 | 1 | -0/+9 |
|\ | | | | | BUG: Enforce Order Param for MaskedArray Construction | ||||
| * | BUG: Enforce order param for MaskedArray construction | gfyoung | 2016-01-15 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | Adds the 'order' parameter to the __new__ override in MaskedArray construction, enabling it to be enforced in methods like np.ma.core.array and np.ma.core.asarray. Closes gh-6646. | ||||
* | | DOC: Clean up/fix several references to the "future" 1.10 release | Nathaniel J. Smith | 2016-01-14 | 1 | -2/+2 |
|/ | | | | Fixes gh-7010 | ||||
* | DEP: Deprecate random_integers | gfyoung | 2016-01-10 | 1 | -3/+11 |
| | |||||
* | Merge pull request #6989 from jakirkham/sty_indent_doc_typos_floatint | Charles Harris | 2016-01-10 | 1 | -26/+25 |
|\ | | | | | STY, DOC: Fix indentation and typos in example | ||||
| * | DOC: Fix typos. | John Kirkham | 2016-01-10 | 1 | -2/+2 |
| | | |||||
| * | STY: Fix indentation in example from docs. | John Kirkham | 2016-01-10 | 1 | -24/+23 |
| | | |||||
* | | ENH: moveaxis function | Stephan Hoyer | 2016-01-09 | 2 | -0/+3 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes GH2039 This function provides a much more intuitive interface than `np.rollaxis`, which has a confusing behavior with the position of the `start` argument: http://stackoverflow.com/questions/29891583/reason-why-numpy-rollaxis-is-so-confusing It was independently suggested several times over the years after discussions on the mailing list and GitHub (GH2039), but never made it into a pull request: https://mail.scipy.org/pipermail/numpy-discussion/2010-September/052882.html My version adds support for a sequence of axis arguments. I find this behavior to be very useful. It is often more intuitive than supplying a list of arguments to `transpose` and also nicely generalizes NumPy's existing axis manipulation routines, e.g., def transpose(a, order=None): if order is None: order = reversed(range(a.ndim)) return moveaxes(a, order, range(a.ndim)) def swapaxes(a, axis1, axis2): return moveaxes(a, [axis1, axis2], [axis2, axis1]) def rollaxis(a, axis, start=0): if axis < start: start -= 1 return moveaxes(a, axis, start) | ||||
* | Merge pull request #6955 from rgommers/distutils-cleanup | Charles Harris | 2016-01-07 | 1 | -0/+4 |
|\ | | | | | MAINT: distutils cleanup for Pyrex support and unused f2py/swig tests | ||||
| * | DOC: mention removal of Pyrex support in 1.11.0 release notes. | Ralf Gommers | 2016-01-07 | 1 | -0/+4 |
| | | | | | | | | [ci skip] | ||||
* | | Merge pull request #6965 from charris/update-master-from-1.10.x | Ralf Gommers | 2016-01-07 | 3 | -36/+42 |
|\ \ | | | | | | | DOC: Sync 1.10.3 and 1.10.4 release notes, update reference doc. | ||||
| * | | DOC: Sync 1.10.3 and 1.10.4 release notes, update reference doc. | Charles Harris | 2016-01-06 | 3 | -36/+42 |
| | | | |||||
* | | | Merge pull request #6932 from jakirkham/opt_dot_trans | Nathaniel J. Smith | 2016-01-06 | 1 | -0/+8 |
|\ \ \ | |/ / |/| | | ENH: Use `syrk` to compute certain dot products more quickly and accurately | ||||
| * | | DOC: Update the 1.11.0 release notes to mention optimizations of `A.T @ A` ↵ | John Kirkham | 2016-01-06 | 1 | -0/+8 |
| |/ | | | | | | | and `A @ A.T`. | ||||
* | | Release note entry for change in behaviour for np.trace. | Marten van Kerkwijk | 2016-01-06 | 1 | -0/+6 |
| | | |||||
* | | Merge pull request #6905 from kohr-h/issue-6899__broadcast_with_one_arg | Jaime | 2016-01-06 | 1 | -0/+11 |
|\ \ | | | | | | | ENH: allow single input argument in numpy.broadcast | ||||
| * | | DOC: Mention single-arg broadcast in release notes | Holger Kohr | 2016-01-06 | 1 | -0/+11 |
| | | | |||||
* | | | Merge pull request #6958 from charris/update-1.10.3-notes | Charles Harris | 2016-01-06 | 1 | -0/+8 |
|\ \ \ | | | | | | | | | DOC: update 1.10.3 release notes. | ||||
| * | | | DOC: update 1.10.3 release notes. | Charles Harris | 2016-01-06 | 1 | -0/+8 |
| | |/ | |/| | | | | | | | [ci skip] | ||||
* | | | DOC: Update 1.10.3 release notes with last minute additions. | Charles Harris | 2016-01-06 | 1 | -1/+4 |
|/ / | | | | | | | [skip ci] | ||||
* | | DOC: Update the 1.10.3 release notes for release. | Charles Harris | 2016-01-05 | 1 | -2/+7 |
| | | | | | | | | [skip ci] | ||||
* | | DOC,BUG: Fix some latex generation problems. | Charles Harris | 2016-01-05 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Some of the documentation for newbyteorder, copy and pasted in several spots, had paragraphs ending in `::`, initiating a sphinx generated Verbatim environment and resulting in "LaTeX Error: Too deeply nested". The user_array.container class needed non-empty class documentation. That that caused a problem is probably a numpydoc bug, but it is easy to fix. [skip ci] | ||||
* | | DOC: Create Numpy 1.10.3 release notes. | Charles Harris | 2016-01-04 | 1 | -0/+22 |
| | | |||||
* | | DEP: deprecate np.testing.rand | Evgeni Burovski | 2016-01-04 | 1 | -0/+7 |
|/ | |||||
* | MAINT: Fix typos in 1.11.0-notes.rst and mtrand.pyx documentation. | Charles Harris | 2016-01-03 | 1 | -1/+1 |
| | |||||
* | Merge pull request #6910 from charris/add-64-bit-random-int | Charles Harris | 2016-01-03 | 1 | -0/+17 |
|\ | | | | | ENH: Add dtype argument to random.randint. | ||||
| * | DOC: Document new randint dtype parameter in 1.11.0 release notes. | Charles Harris | 2016-01-02 | 1 | -0/+17 |
| | | |||||
* | | DOC: add note not to run tests from repo root in devguide. Closes gh-6907. | Ralf Gommers | 2015-12-31 | 1 | -0/+3 |
| | | | | | | | | [ci skip] | ||||
* | | DOC: fix broken link in user guide. Closes gh-6906. | Ralf Gommers | 2015-12-31 | 1 | -2/+2 |
|/ | | | | [ci skip] | ||||
* | Fix carriage return inside commented python code | Vincent Legoll | 2015-12-26 | 1 | -2/+2 |
| | | | This looks more conventionnal | ||||
* | Fix version number in the document | Ryosuke Okuta | 2015-12-23 | 1 | -1/+1 |
| | | | This PR fix version number of the format specification. | ||||
* | Merge pull request #6600 from mgeier/doc-ndarray-subclasses | Charles Harris | 2015-12-18 | 1 | -6/+6 |
|\ | | | | | DOC: fix method signatures in "array subclasses" | ||||
| * | DOC: fix method signatures in "array subclasses" | Matthias Geier | 2015-12-11 | 1 | -6/+6 |
| | | | | | | | | | | | | * Change ".. function::" -> ".. method::" * Remove "self" argument * Change "self" to "obj" in __array_finalize__ | ||||
* | | DEP: Stricter arg checking for array ordering | gfyoung | 2015-12-18 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | The bug traces to the PyArray_OrderConverter method in conversion_utils.c, where no errors are thrown if the ORDER parameter passed in is not of the string data-type or has a string value of length greater than one. This commit causes a DeprecationWarning to be raised, which will later be turned into a TypeError or another type of error in a future release. Closes gh-6598. | ||||
* | | STY: Break some long lines in numpy-for-matlab-users.rst. | Charles Harris | 2015-12-17 | 1 | -34/+81 |
| | | |||||
* | | DOC: Some documentation fixups. | Charles Harris | 2015-12-17 | 1 | -11/+20 |
| | | | | | | | | | | Add '.. versionadded:: 1.11.0' to the new `extension` parameter in f2py.compile and document it in the 1.11.0 release notes. | ||||
* | | Merge pull request #6851 from charris/rebase-gh-6692 | Charles Harris | 2015-12-17 | 1 | -2/+7 |
|\ \ | | | | | | | Rebase gh 6692, ENH: use linux fallocate to reserve diskspace in array.tofile | ||||
| * | | DOC: add fallocate use to release notes | Julian Taylor | 2015-12-17 | 1 | -2/+7 |
| | | | |||||
* | | | Merge pull request #6841 from matthew-brett/rank-to-dimension | Charles Harris | 2015-12-17 | 1 | -25/+27 |
|\ \ \ | |/ / |/| | | DOC: change uses of `rank` for `dimension` | ||||
| * | | DOC: change uses of `rank` for `dimension` | Matthew Brett | 2015-12-16 | 1 | -25/+27 |
| | | | | | | | | | | | | | | | | | | | | | We used to use ``rank`` to mean the number of axes in an array, but no more. Change these uses of rank to refer to dimensions. Closes gh-6839 | ||||
* | | | Merge pull request #6795 from charris/update-1.11.0-notes | Charles Harris | 2015-12-17 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | DOC: Update future changes in the 1.11.0 release notes. | ||||
| * | | | DOC: Update future changes in the 1.11.0 release notes. | Charles Harris | 2015-12-08 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | Support for Python 2.6, 3.2, and 3.3 will be dropped in Numpy 1.12.0. [ci skip] | ||||
* | | | | MAINT: minor spelling and grammar corrections | gfyoung | 2015-12-16 | 1 | -1/+1 |
| |/ / |/| | | |||||
* | | | DOC: Update 1.10.2 release notes with fixes for windows i386. | Charles Harris | 2015-12-12 | 1 | -0/+4 |
| |/ |/| | |||||
* | | Merge pull request #6344 from matthew-brett/update-howto-release | Charles Harris | 2015-12-10 | 1 | -46/+157 |
|\ \ | | | | | | | MRG: update HOWTO_RELEASE document | ||||
| * | | DOC: update HOWTO_RELEASE document | Matthew Brett | 2015-10-26 | 1 | -46/+157 |
| | | | | | | | | | | | | | | | An update of release notes from experience of releasing 1.9.3, with responses to comments by Chuck and Ralf. | ||||
* | | | Merge pull request #6789 from njsmith/governance-title-tweak | seberg | 2015-12-08 | 1 | -1/+1 |
|\ \ \ | |_|/ |/| | | [doc] Fix title of governance section in docs | ||||
| * | | [doc] Fix title of governance section in docs | Nathaniel J. Smith | 2015-12-07 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #6778 from charris/update-1.10.2-notes | Charles Harris | 2015-12-07 | 2 | -4/+64 |
|\ \ \ | | | | | | | | | WIP: Update 1.10.2 notes |