<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/testing, branch v1.9.2</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 #5374 from lebigot/patch-1</title>
<updated>2014-12-24T12:40:00+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-12-24T12:40:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bd7fcee2efe3a1b40f46ef271b99bb1caa4bc8cc'/>
<id>bd7fcee2efe3a1b40f46ef271b99bb1caa4bc8cc</id>
<content type='text'>
DOC: Fixed incorrect assert_array_almost_equal_nulp documentation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DOC: Fixed incorrect assert_array_almost_equal_nulp documentation
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fixed incorrect assert_array_almost_equal_nulp documentation</title>
<updated>2014-12-24T12:38:13+00:00</updated>
<author>
<name>Eric O. LEBIGOT (EOL)</name>
<email>eric.lebigot@normalesup.org</email>
</author>
<published>2014-12-17T08:30:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3b6217f3799f85686c1ae87bbdc5cb10ad4585ec'/>
<id>3b6217f3799f85686c1ae87bbdc5cb10ad4585ec</id>
<content type='text'>
The `max()` function previously used does not work with two array-like.
`maximum()` does, and is what is essentially used in the code
(`ref = nulp * np.spacing(np.where(ax &gt; ay, ax, ay))`).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `max()` function previously used does not work with two array-like.
`maximum()` does, and is what is essentially used in the code
(`ref = nulp * np.spacing(np.where(ax &gt; ay, ax, ay))`).
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #5048 from juliantaylor/subclass-test-fix</title>
<updated>2014-09-04T22:57:48+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-09-04T22:57:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=859d2f13c6a603c904701f509bd0bc52efb31295'/>
<id>859d2f13c6a603c904701f509bd0bc52efb31295</id>
<content type='text'>
BUG: fix array_almost_equal for array subclasses
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: fix array_almost_equal for array subclasses
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix array_almost_equal for array subclasses</title>
<updated>2014-09-04T22:19:04+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-09-04T22:17:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=dfc567790badcc87822a39f5c35f0dd78b8c1599'/>
<id>dfc567790badcc87822a39f5c35f0dd78b8c1599</id>
<content type='text'>
introduced in gh-4105/ab04e1ae0e8eca717bc7e42f3b0a60c9ff764289
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
introduced in gh-4105/ab04e1ae0e8eca717bc7e42f3b0a60c9ff764289
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4906 from juliantaylor/doc-update</title>
<updated>2014-07-27T18:22:29+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-07-27T18:22:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8fa45b4d5ef1ac9dab9558fa335491991da83efa'/>
<id>8fa45b4d5ef1ac9dab9558fa335491991da83efa</id>
<content type='text'>
documentation updates for 1.9</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
documentation updates for 1.9</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: numpy.testing documentation clarification of "Raise an assertion"</title>
<updated>2014-07-27T18:05:28+00:00</updated>
<author>
<name>Austin Godber</name>
<email>godber@uberhip.com</email>
</author>
<published>2014-07-18T13:40:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=638e627c813590a91514b255aeb13a34dc2ac51e'/>
<id>638e627c813590a91514b255aeb13a34dc2ac51e</id>
<content type='text'>
"Raise an assertion" was changed to "Raises an AssertionError" to clarify that
an exception named AssertionError will be raised.
Closes gh-4884

[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"Raise an assertion" was changed to "Raises an AssertionError" to clarify that
an exception named AssertionError will be raised.
Closes gh-4884

[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4849 from juliantaylor/master</title>
<updated>2014-07-07T08:30:34+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>juliantaylor108@gmail.com</email>
</author>
<published>2014-07-07T08:30:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=301c47037dde56e5c9bad97e2264fb88629ca222'/>
<id>301c47037dde56e5c9bad97e2264fb88629ca222</id>
<content type='text'>
merge master into 1.9 branch</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
merge master into 1.9 branch</pre>
</div>
</content>
</entry>
<entry>
<title>Move tempdir context manager to numpy.testing.utils</title>
<updated>2014-06-30T09:12:32+00:00</updated>
<author>
<name>Olivier Grisel</name>
<email>olivier.grisel@ensta.org</email>
</author>
<published>2014-06-30T09:09:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=290f192465dc68b9e037ec4c1c2dc6fb522f2fdc'/>
<id>290f192465dc68b9e037ec4c1c2dc6fb522f2fdc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>REL: Release 1.9.0b1</title>
<updated>2014-06-08T14:31:02+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-06-08T14:31:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=96b4349da97fd49fb04b678ce16897101677b09f'/>
<id>96b4349da97fd49fb04b678ce16897101677b09f</id>
<content type='text'>
Point release notes to doc/release/1.9.0-notes.rst
Set LOG_START to 'v1.8.1'
Set LOG_END to 'maintenance/1.9.x'
Set raise_warnings to "release" in NoseTester constructor.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Point release notes to doc/release/1.9.0-notes.rst
Set LOG_START to 'v1.8.1'
Set LOG_END to 'maintenance/1.9.x'
Set raise_warnings to "release" in NoseTester constructor.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT:Ignore boolean '-' deprecation warnings in nosetester.py</title>
<updated>2014-05-06T16:28:53+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-05-06T16:18:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b85a4ddaf36ef1b9b324d2671ea4659dcb12245a'/>
<id>b85a4ddaf36ef1b9b324d2671ea4659dcb12245a</id>
<content type='text'>
This allows numpy 1.9 testing to be used with current scipy
without flooding the output with deprecation warnings.

The deprecation warnings are currently issued for both the
subtract and negative operators when used with booleans.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows numpy 1.9 testing to be used with current scipy
without flooding the output with deprecation warnings.

The deprecation warnings are currently issued for both the
subtract and negative operators when used with booleans.
</pre>
</div>
</content>
</entry>
</feed>
