<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib, branch v1.12.0rc1</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>Merge pull request #8391 from charris/fix-python-3.6-compat</title>
<updated>2016-12-18T01:03:15+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-12-18T01:03:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d3fbb97a923abd6c242b5811770d640a02c9feb2'/>
<id>d3fbb97a923abd6c242b5811770d640a02c9feb2</id>
<content type='text'>
DEP: Fix escaped string characters deprecated in Python 3.6.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DEP: Fix escaped string characters deprecated in Python 3.6.</pre>
</div>
</content>
</entry>
<entry>
<title>DEP: Fix escaped string characters deprecated in Python 3.6.</title>
<updated>2016-12-17T23:51:03+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-12-13T22:53:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d156cafb3b9163d731869c18740a51f733c2c776'/>
<id>d156cafb3b9163d731869c18740a51f733c2c776</id>
<content type='text'>
In Python 3.6 a number of escape sequences that were previously accepted
-- for instance "\(" that was translated to "\\(" -- are deprecated. To
retain the previous behavior either raw strings must be used or the
backslash must be properly escaped itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Python 3.6 a number of escape sequences that were previously accepted
-- for instance "\(" that was translated to "\\(" -- are deprecated. To
retain the previous behavior either raw strings must be used or the
backslash must be properly escaped itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: retune apply_along_axis nanmedian cutoff</title>
<updated>2016-12-17T12:28:30+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2016-12-17T12:07:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c827f5093145fb75b5cbb1990114a9ce94dd0b8d'/>
<id>c827f5093145fb75b5cbb1990114a9ce94dd0b8d</id>
<content type='text'>
Old value was erroneously obtained on a sorted array which is a best
case for the median of 3 pivoted introsort.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Old value was erroneously obtained on a sorted array which is a best
case for the median of 3 pivoted introsort.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: update the small nanmedian threshold</title>
<updated>2016-12-12T23:19:58+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2016-12-12T22:15:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1e3ec9fd3b4261c5222b2383589d170e98b7ecc3'/>
<id>1e3ec9fd3b4261c5222b2383589d170e98b7ecc3</id>
<content type='text'>
The apply_along_axis path is significantly more expensive than currently
accounted for in the check. Increase the minimum axis size from 400 to
1000 elements.
Either apply_along_axis got more expensive over time or the original
benchmarking was flawed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The apply_along_axis path is significantly more expensive than currently
accounted for in the check. Increase the minimum axis size from 400 to
1000 elements.
Either apply_along_axis got more expensive over time or the original
benchmarking was flawed.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: handle unmasked NaN in ma.median like normal median</title>
<updated>2016-12-12T23:19:58+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2016-12-05T23:37:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=52336fcea1136302885112f90bf11aa9eaf602d3'/>
<id>52336fcea1136302885112f90bf11aa9eaf602d3</id>
<content type='text'>
This requires to base masked median on sort(endwith=False) as we need to
distinguish Inf and NaN.
Using Inf as filler element of the sort does not work as then the mask is not
guaranteed to be at the end.
Closes gh-8340

Also fixed 1d ma.median not handling np.inf correctly, the nd variant
was ok.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This requires to base masked median on sort(endwith=False) as we need to
distinguish Inf and NaN.
Using Inf as filler element of the sort does not work as then the mask is not
guaranteed to be at the end.
Closes gh-8340

Also fixed 1d ma.median not handling np.inf correctly, the nd variant
was ok.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix nanpercentile not returning scalar with axis argument</title>
<updated>2016-12-12T23:19:58+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2016-12-11T19:35:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2e79af2ad60763bc02e606d9ef802415c28cad24'/>
<id>2e79af2ad60763bc02e606d9ef802415c28cad24</id>
<content type='text'>
Closes gh-8220
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-8220
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix packbits and unpackbits to correctly handle empty arrays</title>
<updated>2016-12-03T21:52:47+00:00</updated>
<author>
<name>Takuya Akiba</name>
<email>t.akiba.65536@gmail.com</email>
</author>
<published>2016-11-29T06:37:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1b26730fb81c23d823c1bde7ba0cbd531b39b617'/>
<id>1b26730fb81c23d823c1bde7ba0cbd531b39b617</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: np.piecewise not working for scalars</title>
<updated>2016-11-10T20:03:27+00:00</updated>
<author>
<name>alvarosg</name>
<email>as12513@imperial.ac.uk</email>
</author>
<published>2016-10-21T13:51:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f39c92b5924d6d08a3d53d51df1b76dd8d93d90b'/>
<id>f39c92b5924d6d08a3d53d51df1b76dd8d93d90b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #7987 from f0k/advertise-open_memmap</title>
<updated>2016-10-28T16:00:18+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-10-28T16:00:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6ae842001332f532e0c76815d49336ecc2b88dde'/>
<id>6ae842001332f532e0c76815d49336ecc2b88dde</id>
<content type='text'>
DOC:  See also np.load and np.memmap in np.lib.format.open_memmap</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DOC:  See also np.load and np.memmap in np.lib.format.open_memmap</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #8218 from mattharrigan/ediff1d-performance</title>
<updated>2016-10-28T15:08:40+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-10-28T15:08:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e908bfa9977a45b311ef09f03551aa1780686739'/>
<id>e908bfa9977a45b311ef09f03551aa1780686739</id>
<content type='text'>
BUG: ediff1d should return subclasses</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: ediff1d should return subclasses</pre>
</div>
</content>
</entry>
</feed>
