summaryrefslogtreecommitdiff
path: root/doc/release/2.0.0-notes.rst
Commit message (Collapse)AuthorAgeFilesLines
* Update release notes.Travis E. Oliphant2012-07-181-259/+0
|
* BUG: Fix boolean indexing to previous behavior by adding an additional check ↵Travis E. Oliphant2012-06-211-6/+8
| | | | before using the new code path. Add tests.
* Typo fixNathaniel J. Smith2012-05-171-1/+1
| | | | Thanks to Travis for catching it.
* Document the PyArray_Diagonal transition scheme.Nathaniel J. Smith2012-05-161-29/+35
|
* Consolidate all array writeability checking in new PyArray_RequireWriteableNathaniel J. Smith2012-05-151-0/+13
| | | | | | | | | This is mostly a code cleanup, but it does have a user-visible effect in that attempting to write to a unwriteable array now consistently raises ValueError. (It used to randomly raise either ValueError or RuntimeError.) Passes numpy.test("full").
* DOC: Add datetime to the changed items in the release notes.Charles Harris2012-05-011-0/+7
|
* DOC: Update documentation and release notes about C-API deprecationsMark Wiebe2012-04-061-5/+6
|
* ENH: Add module containing functions for padding n-dimensional arrays.tim cera2012-04-041-0/+12
| | | | | | | | | | | | | The various padding functions are exposed as options to a public 'pad' function. Example: pad(a, 5, mode='mean') Current modes are 'constant', 'edge', 'linear_ramp', 'maximum', 'mean', 'median', 'minimum', 'reflect', 'symmetric', 'wrap', and <function> This commit includes unit tests and doctests and is based on feature request ticket #655.
* ENH: Add 'sorter' argument to searchsorted.Bryan Van de Ven2012-04-041-0/+6
| | | | | | | | The new argument allows one to search an argsorted array by passing in the result of argsorting the array as the 'sorter' argument. For example searchsorted(a, sorter=a.argsort)
* DOC: label datetime support as experimental. Closes #2072.Ralf Gommers2012-03-301-0/+8
|
* DOC: label the current NA implementation as experimental in 1.7.xRalf Gommers2012-03-301-0/+5
| | | | This has been extensively discussed on the mailing list. See #2072.
* ENH: Made "isclose()" NA-aware, added release note and versionadded.Joe Kington2012-03-041-0/+7
|
* DOC: clarify numpy version for removal, document sed script better.Charles Harris2012-02-041-1/+1
|
* STY: Fix up the 2.0 (1.7) release notes.Charles Harris2012-02-041-5/+11
|
* DEP: Deprecate the old_defines.h header and the macros therein.Charles Harris2012-02-041-5/+16
| | | | | | The old_defines.h file is no longer included in ndarrayobject.h, but instead in the npy_deprecated_api.h file. It is no longer part of the numpy build and its deprecation is noted in the release notes.
* DOC: Document macro changes in release notes.Charles Harris2012-01-271-0/+9
|
* DOC: Move removing deprecated imports note to deprecation section.Charles Harris2012-01-091-2/+2
|
* DOC: Document new polynomial package functionality in the release notes.Charles Harris2012-01-091-1/+22
|
* FIX: Add release notes, use inverse cdf method for non-uniformChris Jordan-Squire2011-12-171-1/+3
| | | | | sampling with replacement, change searchsorted to use side='right', and regenerate mtrand.c.
* DOC: Add note about <ufunc>.reduce evaluation orderMark Wiebe2011-08-311-0/+6
|
* DOC: Mention the update to np.all and np.any in the release notesMark Wiebe2011-08-271-1/+3
|
* DOC: missingdata: Add introductory documentation for NA-masked arraysMark Wiebe2011-08-271-0/+1
|
* ENH: missingdata: Add maskna= flag to np.eye constructorMark Wiebe2011-08-271-3/+1
|
* ENH: missingdata: Add skipna=, keepdims= parameters to methodsMark Wiebe2011-08-271-4/+2
| | | | | | Also fix some memory leaks, improve some type resolution code. The methods still have some issues with array subtypes that needs working through.
* ENH: missingdata: Add wheremask to PyArray_ContainsNAMark Wiebe2011-08-271-2/+3
| | | | | | Use this to make masked assignment just check the elements its copying for NA, so that the source array can have NAs, just not where the mask says.
* DOC: Add info to the release notes about the full boolean indexing changeMark Wiebe2011-08-271-0/+8
|
* BUG: ufunc: Fix bug in multi-dimensional reduction without a unitMark Wiebe2011-08-271-0/+2
|
* DOC: Tweak to the release notesMark Wiebe2011-08-271-3/+4
|
* DOC: Small tweak to release notesMark Wiebe2011-08-271-2/+2
|
* TST: missingdata: Finish up NA mask tests for np.std and np.varMark Wiebe2011-08-271-2/+18
|
* ENH: missingdata: Move some of the refactored reduction code into the APIMark Wiebe2011-08-271-1/+19
| | | | | | | Doing this so that it can be used both in multiarray and umath, to make writing new reduction operations generally easier. Also made PyArray_Squeeze work with NA-masked arrays.
* ENH: missingdata: trying some more functions to see how they treat NAsMark Wiebe2011-08-271-3/+9
|
* BUG: missingdata: Fix mask usage in PyArray_TakeFrom, add tests for itMark Wiebe2011-08-271-1/+16
|
* ENH: missingdata: Rewrite PyArray_Concatenate to work with NA masksMark Wiebe2011-08-271-0/+3
| | | | | It should also have less memory usage for heterogeneous inputs, because it no longer makes extra copies in that case.
* ENH: missingdata: Add NA support to np.diagonal, change np.diagonal to ↵Mark Wiebe2011-08-271-5/+17
| | | | always return a view
* BUG: missingdata: Fleshing things out, tracking down a memory corruptionMark Wiebe2011-08-271-2/+4
|
* WIP: fixing reduce NA bugMark Wiebe2011-08-271-2/+3
|
* ENH: missingdata: Adding NA support to various methodsMark Wiebe2011-08-271-0/+25
|
* ENH: Ticket #1218, allow use of custom formatters in array2string andRalf Gommers2011-04-241-0/+12
| | | | set_printoptions. Add tests for the new functionality.
* REL: add 1.6.0 release notes.rgommers2011-03-111-7/+0
|
* DOC: Add release note mention of float16 typeMark Wiebe2010-12-011-0/+7
|
* DOC: some more details on release process, and blank 2.0.0 notes.rgommers2010-09-051-0/+16
|
* Merge branch 'wgt'Charles Harris2010-07-181-104/+0
|
* CHG: Rename reduce method in polytemplate to cutdeg. Reduce is just tooCharles Harris2010-06-071-2/+2
| | | | much like a ufunc and a bit vague.
* DOC: Add removal of histogram 'new' keyword to release notes. Closes #797.rgommers2010-06-021-0/+4
|
* Update 2.0.0 release documentation to reflect changes in the Chebyshev andCharles Harris2010-05-231-4/+10
| | | | Polynomial classes.
* REV: Revert the changes to the truncate method of Polynomial and Chebyshev.Charles Harris2010-05-231-6/+0
| | | | | On second thought it was a bad idea to make such a radical change to existing behaviour. It was also hard to document the variations ;)
* Add some more info to the release notes for 2.0.0.Charles Harris2010-05-211-0/+6
|
* Note the changes in polynomial.polynomial and polynomial.chebyshev inCharles Harris2010-05-211-0/+25
| | | | the release notes.
* DOC: Fix typo in 2.0.0 release notes.Stefan van der Walt2010-05-101-7/+7
|