summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Fix typos in docsDongjoon Hyun2016-01-2512-18/+18
|
* DOC: Update the 1.11.0 release notes.Charles Harris2016-01-231-90/+136
| | | | [ci skip]
* REL: Update master branch after 1.12.x branch has been made.Charles Harris2016-01-192-0/+67
| | | | | | | * Drop testing of Python 2.6, 3.2, and 3.3 * Create 1.12.0-notes.rst and add to source/documentation. * Update pavement.py to use 1.10.x as LOG_START * Update version numpy in setup.py
* DOC: Update the 1.10.0 release notes.Charles Harris2016-01-191-10/+17
| | | | | | Rewrite the documentation of added functionality of the deg parameter of the polynomial fitting functions in the numpy.polynomial package and put it in the 'New Features' section.
* Add release note for polynomial fit deg changesJonathan Underwood2016-01-181-0/+9
|
* MAINT: memcpy-based ~4x faster, typed shuffle.Antony Lee2016-01-161-0/+4
| | | | | | | | | | | | Only for 1d-ndarrays exactly, as subtypes (e.g. masked arrays) may not allow direct shuffle of the underlying buffer (in fact, the old implementation destroyed the underlying values of masked arrays while shuffling). Also handles struct-containing-object 1d ndarrays properly. See #6776 for an earlier, less general (but even faster: ~6x) improvement attempt, #5514 for the original issue.
* Merge pull request #6453 from shoyer/naive-datetime64Charles Harris2016-01-162-25/+78
|\ | | | | API: Make datetime64 timezone naive
| * DOC: document changes to assert_warnsStephan Hoyer2016-01-161-0/+4
| |
| * API: Make datetime64 timezone naiveStephan Hoyer2016-01-152-25/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes GH3290 With apologies to mwiebe, this rips out most of the time zone parsing from the datetime64 type. I think we mostly sorted out the API design in discussions last year, but I'll be posting this to the mailing list shortly to get feedback. Old behavior: # string parsing and printing defaults to your local timezone :( >>> np.datetime64('2000-01-01T00') numpy.datetime64('2000-01-01T00:00-0800','h') New behavior: # datetime64 is parsed and printed as timezone naive >>> np.datetime64('2000-01-01T00') numpy.datetime64('2000-01-01T00','h') # you can still supply a timezone, but you get a deprecation warning >>> np.datetime64('2000-01-01T00Z') DeprecationWarning: parsing timezone aware datetimes is deprecated; this will raise an error in the future numpy.datetime64('2000-01-01T00','h')
* | Merge pull request #7040 from rgommers/fix-runtests-setuptoolsCharles Harris2016-01-161-3/+8
|\ \ | | | | | | BLD: fix runtests.py, was broken by the move to setuptools.
| * | DOC: add build system changes to 1.11.0 release notes.Ralf Gommers2016-01-171-3/+8
| | | | | | | | | | | | [ci skip]
* | | DOC: Fix typo.John Kirkham2016-01-161-1/+1
|/ /
* | DOC: Update the release notes to state that the `A.T @ A` optimization has ↵John Kirkham2016-01-161-3/+4
| | | | | | | | been extended to several NumPy operations.
* | Merge pull request #6895 from rgommers/packagingCharles Harris2016-01-166-17/+23
|\ \ | | | | | | BLD: build improvements (enable setuptools)
| * | DOC/BUG: textual improvements in install docs, and fix a typo in setup.pyRalf Gommers2016-01-161-4/+3
| | | | | | | | | | | | Address comments of @charris on gh-6895.
| * | DOC: some tweaks to the install and build info in the user guide.Ralf Gommers2016-01-162-7/+2
| | |
| * | DOC: add NumpyVersion to the docs, and mention it in version.pyRalf Gommers2016-01-161-0/+7
| | |
| * | DOC: add Cython to list of dependencies in INSTALL.txt. Closes gh-6682.Ralf Gommers2016-01-161-0/+6
| | |
| * | BUG: fix TravisCI test issues when using setuptools unconditionally.Ralf Gommers2016-01-164-10/+9
| | | | | | | | | | | | Also remove all mentions of setupegg.py from the documentation.
* | | Merge pull request #7020 from jakirkham/deprecated_masked_array_mask_copyCharles Harris2016-01-151-0/+1
|\ \ \ | |/ / |/| | DEP: Warn MaskedArray will return views of mask when sliced
| * | DOC: Explain that `MaskedArray`s will try to consistently return view of ↵John Kirkham2016-01-151-0/+1
| |/ | | | | | | their masks when they are also returning views of their data.
* | Merge pull request #7023 from jakirkham/fix_docs_releaseCharles Harris2016-01-151-4/+4
|\ \ | | | | | | DOC: Release 1.11.0 text `code` -> ``code``
| * | DOC: Fix markdown style inline code to restructured text style inline code.John Kirkham2016-01-151-4/+4
| |/
* | DOC: Explain the new exception behavior of `np.dot` when its types cannot be ↵John Kirkham2016-01-151-0/+14
|/ | | | cast to a common type.
* Merge pull request #6912 from gfyoung/asarray_orderCharles Harris2016-01-141-0/+9
|\ | | | | BUG: Enforce Order Param for MaskedArray Construction
| * BUG: Enforce order param for MaskedArray constructiongfyoung2016-01-151-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 releaseNathaniel J. Smith2016-01-141-2/+2
|/ | | | Fixes gh-7010
* DEP: Deprecate random_integersgfyoung2016-01-101-3/+11
|
* Merge pull request #6989 from jakirkham/sty_indent_doc_typos_floatintCharles Harris2016-01-101-26/+25
|\ | | | | STY, DOC: Fix indentation and typos in example
| * DOC: Fix typos.John Kirkham2016-01-101-2/+2
| |
| * STY: Fix indentation in example from docs.John Kirkham2016-01-101-24/+23
| |
* | ENH: moveaxis functionStephan Hoyer2016-01-092-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-cleanupCharles Harris2016-01-071-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 Gommers2016-01-071-0/+4
| | | | | | | | [ci skip]
* | Merge pull request #6965 from charris/update-master-from-1.10.xRalf Gommers2016-01-073-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 Harris2016-01-063-36/+42
| | |
* | | Merge pull request #6932 from jakirkham/opt_dot_transNathaniel J. Smith2016-01-061-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 Kirkham2016-01-061-0/+8
| |/ | | | | | | and `A @ A.T`.
* | Release note entry for change in behaviour for np.trace.Marten van Kerkwijk2016-01-061-0/+6
| |
* | Merge pull request #6905 from kohr-h/issue-6899__broadcast_with_one_argJaime2016-01-061-0/+11
|\ \ | | | | | | ENH: allow single input argument in numpy.broadcast
| * | DOC: Mention single-arg broadcast in release notesHolger Kohr2016-01-061-0/+11
| | |
* | | Merge pull request #6958 from charris/update-1.10.3-notesCharles Harris2016-01-061-0/+8
|\ \ \ | | | | | | | | DOC: update 1.10.3 release notes.
| * | | DOC: update 1.10.3 release notes.Charles Harris2016-01-061-0/+8
| | |/ | |/| | | | | | | [ci skip]
* | | DOC: Update 1.10.3 release notes with last minute additions.Charles Harris2016-01-061-1/+4
|/ / | | | | | | [skip ci]
* | DOC: Update the 1.10.3 release notes for release.Charles Harris2016-01-051-2/+7
| | | | | | | | [skip ci]
* | DOC,BUG: Fix some latex generation problems.Charles Harris2016-01-051-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 Harris2016-01-041-0/+22
| |
* | DEP: deprecate np.testing.randEvgeni Burovski2016-01-041-0/+7
|/
* MAINT: Fix typos in 1.11.0-notes.rst and mtrand.pyx documentation.Charles Harris2016-01-031-1/+1
|
* Merge pull request #6910 from charris/add-64-bit-random-intCharles Harris2016-01-031-0/+17
|\ | | | | ENH: Add dtype argument to random.randint.