<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/tools, branch eric-wieser-patch-1</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>DOC: fixes from review</title>
<updated>2019-02-28T09:46:34+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2019-02-24T08:10:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2f41bb26b061821c77aff6982630de937ad9007a'/>
<id>2f41bb26b061821c77aff6982630de937ad9007a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Convert property to @property</title>
<updated>2019-02-25T02:26:37+00:00</updated>
<author>
<name>Alex Watt</name>
<email>alex@alexcwatt.com</email>
</author>
<published>2019-02-25T01:00:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c458774c637c508f4b1e49ebaa2f85083579fa10'/>
<id>c458774c637c508f4b1e49ebaa2f85083579fa10</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: __array_function__ updates for NumPy 1.17.0</title>
<updated>2019-01-22T22:13:39+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2019-01-22T22:07:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=96d179ce5bd0e3f75508f6afdfb2fb65170cc83c'/>
<id>96d179ce5bd0e3f75508f6afdfb2fb65170cc83c</id>
<content type='text'>
- Always enable __array_function__ overrides.
- Remove special cases for Python 2 compatibility.
- Document these changes in 1.17.0-notes.rst.

It will be good to see ASV numbers to understand the performance implications
of these changes. If need be, we can speed up NumPy functions internally by
using non-dispatched functions (with ``.__wrapped__``).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Always enable __array_function__ overrides.
- Remove special cases for Python 2 compatibility.
- Document these changes in 1.17.0-notes.rst.

It will be good to see ASV numbers to understand the performance implications
of these changes. If need be, we can speed up NumPy functions internally by
using non-dispatched functions (with ``.__wrapped__``).
</pre>
</div>
</content>
</entry>
<entry>
<title>TEST: activate doctests on doc.structured_arrays, fix for pure doc module</title>
<updated>2019-01-14T07:18:13+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2019-01-14T07:18:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7fea4027fb85f8347af6c2e7e319f41a0603891f'/>
<id>7fea4027fb85f8347af6c2e7e319f41a0603891f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: add "max difference" messages to np.testing.assert_array_equal (#12591)</title>
<updated>2019-01-02T06:50:29+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@gmail.com</email>
</author>
<published>2019-01-02T06:50:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a16fc9499eaa7cc9d7532f8a51725c6ed647cd1b'/>
<id>a16fc9499eaa7cc9d7532f8a51725c6ed647cd1b</id>
<content type='text'>
Example behavior:

&gt;&gt;&gt; x = np.array([1, 2, 3])
&gt;&gt;&gt; y = np.array([1, 2, 3.0001])
&gt;&gt;&gt; np.testing.assert_allclose(x, y)
AssertionError:
Not equal to tolerance rtol=1e-07, atol=0

Mismatch: 33.3%
Max absolute difference: 0.0001
Max relative difference: 3.33322223e-05
 x: array([1, 2, 3])
 y: array([1.    , 2.    , 3.0001])

Motivation: when writing numerical algorithms, I frequently find myself
experimenting to pick the right value of `atol` and `rtol` for
`np.testing.assert_allclose()`. If I make the tolerance too generous, I risk
missing regressions in accuracy, so I usually try to pick the smallest values
for which tests pass. This change immediately reveals appropriate values to
use for these parameters, so I don't need to guess and check.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Example behavior:

&gt;&gt;&gt; x = np.array([1, 2, 3])
&gt;&gt;&gt; y = np.array([1, 2, 3.0001])
&gt;&gt;&gt; np.testing.assert_allclose(x, y)
AssertionError:
Not equal to tolerance rtol=1e-07, atol=0

Mismatch: 33.3%
Max absolute difference: 0.0001
Max relative difference: 3.33322223e-05
 x: array([1, 2, 3])
 y: array([1.    , 2.    , 3.0001])

Motivation: when writing numerical algorithms, I frequently find myself
experimenting to pick the right value of `atol` and `rtol` for
`np.testing.assert_allclose()`. If I make the tolerance too generous, I risk
missing regressions in accuracy, so I usually try to pick the smallest values
for which tests pass. This change immediately reveals appropriate values to
use for these parameters, so I don't need to guess and check.</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Update `travis-test.sh` for C99</title>
<updated>2018-12-25T18:43:45+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-12-25T18:43:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9c68725fda8e1a1808144447cccdeab564ddae6e'/>
<id>9c68725fda8e1a1808144447cccdeab564ddae6e</id>
<content type='text'>
Most of this was already done, but we were still raising an error for
declaration after a statement because the Windows Python 2.7 compiler
did not allow it. We can fix this now as NumPy &gt;= 1.17 has dropped
Python 2.7 support.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most of this was already done, but we were still raising an error for
declaration after a statement because the Windows Python 2.7 compiler
did not allow it. We can fix this now as NumPy &gt;= 1.17 has dropped
Python 2.7 support.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #12589 from charris/fix-changelog-py3k</title>
<updated>2018-12-21T18:22:31+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-12-21T18:22:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e2694759a21c948aa5be26a7e4ac65b7b8b8a8da'/>
<id>e2694759a21c948aa5be26a7e4ac65b7b8b8a8da</id>
<content type='text'>
MAINT: Update changelog.py for Python 3.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MAINT: Update changelog.py for Python 3.</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Update changelog.py for Python 3.</title>
<updated>2018-12-19T19:52:45+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-12-18T18:23:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8bb395841605948b5003701b8fc2e3bc36f24bde'/>
<id>8bb395841605948b5003701b8fc2e3bc36f24bde</id>
<content type='text'>
- Don't use UTF8Writer in Python 3.
- Don't use print() for blank lines.

This is left compatible with Python 2 as someone may use it with
that version and there is no need to force the change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Don't use UTF8Writer in Python 3.
- Don't use print() for blank lines.

This is left compatible with Python 2 as someone may use it with
that version and there is no need to force the change.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: refactor __array_function__ pure Python implementation</title>
<updated>2018-12-19T18:46:40+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-12-19T18:08:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=45413455791c77465c5f33a5082053274eb18900'/>
<id>45413455791c77465c5f33a5082053274eb18900</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: include recfunctions module</title>
<updated>2018-12-14T18:14:05+00:00</updated>
<author>
<name>Tyler Reddy</name>
<email>tyler.je.reddy@gmail.com</email>
</author>
<published>2018-12-05T22:59:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=28f8a85b9ece5773a8ac75ffcd2502fc93612eff'/>
<id>28f8a85b9ece5773a8ac75ffcd2502fc93612eff</id>
<content type='text'>
* added lib.recfunctions to refguide
PUBLIC_SUBMODULES, as the doctests
were otherwise not getting executed

* fixed a failing doctest in
recfunctions after above activation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added lib.recfunctions to refguide
PUBLIC_SUBMODULES, as the doctests
were otherwise not getting executed

* fixed a failing doctest in
recfunctions after above activation
</pre>
</div>
</content>
</entry>
</feed>
