<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy, branch maintenance/1.6.x</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>TST: Add test for gh-2785.</title>
<updated>2012-12-04T18:40:29+00:00</updated>
<author>
<name>Bradley M. Froehle</name>
<email>brad.froehle@gmail.com</email>
</author>
<published>2012-12-04T18:38:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=46e3b4cc9d9101ceaafffc6bb8faafee1bdc5fc9'/>
<id>46e3b4cc9d9101ceaafffc6bb8faafee1bdc5fc9</id>
<content type='text'>
Ensure that np.unique works on data types with special comparators.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ensure that np.unique works on data types with special comparators.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: gh-2785, np.unique: TypeError: requested sort not available for type</title>
<updated>2012-12-04T18:40:22+00:00</updated>
<author>
<name>Bradley M. Froehle</name>
<email>brad.froehle@gmail.com</email>
</author>
<published>2012-12-04T18:23:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=14fc78319e1b61cb2806be7059f78d03a02bc7f7'/>
<id>14fc78319e1b61cb2806be7059f78d03a02bc7f7</id>
<content type='text'>
Revert "BUG: ticket #2063, make unique return consistent index."

This reverts commit 74b9f5eef8fac643bf9012dbb2ac6b4b19f46892.

Conflicts:
	numpy/core/tests/test_regression.py

This commit introduced a regression in `np.unique` for certain data types:

  &gt;&gt;&gt; A = np.array([[1, 2], [1, 3], [1, 2]], dtype='i')
  &gt;&gt;&gt; B, I, J = np.unique(A.view([('', A.dtype)]*A.shape[1]), True, True)
  Traceback (most recent call last):
    File ".../numpy/lib/arraysetops.py", line 178, in unique
      perm = ar.argsort(kind='mergesort')
  TypeError: requested sort not available for type
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Revert "BUG: ticket #2063, make unique return consistent index."

This reverts commit 74b9f5eef8fac643bf9012dbb2ac6b4b19f46892.

Conflicts:
	numpy/core/tests/test_regression.py

This commit introduced a regression in `np.unique` for certain data types:

  &gt;&gt;&gt; A = np.array([[1, 2], [1, 3], [1, 2]], dtype='i')
  &gt;&gt;&gt; B, I, J = np.unique(A.view([('', A.dtype)]*A.shape[1]), True, True)
  Traceback (most recent call last):
    File ".../numpy/lib/arraysetops.py", line 178, in unique
      perm = ar.argsort(kind='mergesort')
  TypeError: requested sort not available for type
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: mark longdouble tests for spacing/nextafter as knownfail on PPC.</title>
<updated>2012-11-14T03:18:38+00:00</updated>
<author>
<name>rgommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2010-11-08T13:24:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=48beebc70360a447c7ba8155f20ff170c300dfc6'/>
<id>48beebc70360a447c7ba8155f20ff170c300dfc6</id>
<content type='text'>
See #1664.
Thanks to Matthew Brett for suggesting this improved detection of PPC.

Conflicts:

	numpy/core/tests/test_umath.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See #1664.
Thanks to Matthew Brett for suggesting this improved detection of PPC.

Conflicts:

	numpy/core/tests/test_umath.py
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix incorrect references to parents in memmap children.</title>
<updated>2012-07-04T17:28:54+00:00</updated>
<author>
<name>Sveinung Gundersen</name>
<email>sveinugu@gmail.com</email>
</author>
<published>2012-07-03T09:31:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4fc64c9286a3d83db9f91c57af0eb5d447e0049b'/>
<id>4fc64c9286a3d83db9f91c57af0eb5d447e0049b</id>
<content type='text'>
[Back-ported from master by njs, with an additional tweak to
memmap.__del__ to avoid unhandled-exception warnings.]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[Back-ported from master by njs, with an additional tweak to
memmap.__del__ to avoid unhandled-exception warnings.]
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: for numpy.random test, back off test precision a little.</title>
<updated>2012-05-19T13:13:13+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-19T13:13:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=5982e1b33d25e029429f52f181a868b70067b3b0'/>
<id>5982e1b33d25e029429f52f181a868b70067b3b0</id>
<content type='text'>
This test was reported to be failing once for 1.6.2rc1, test precision may be
set slightly too agressive.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This test was reported to be failing once for 1.6.2rc1, test precision may be
set slightly too agressive.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix running tests with coverage=True.</title>
<updated>2012-05-19T13:10:01+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-19T13:10:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3e1280678e5175794410f4bff30f771ad866b144'/>
<id>3e1280678e5175794410f4bff30f771ad866b144</id>
<content type='text'>
The --cover-inclusive argument means that coverage.py tries to include every
single .py file in the source tree in the coverage report. This leads to test
errors, because it tries to import files like setupscons.py (which will of
course directly fail for anyone not having numscons installed).

(backport of bfaaefe5)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The --cover-inclusive argument means that coverage.py tries to include every
single .py file in the source tree in the coverage report. This leads to test
errors, because it tries to import files like setupscons.py (which will of
course directly fail for anyone not having numscons installed).

(backport of bfaaefe5)
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: mark floating point error tests as unconditional knownfail.  See #1755.</title>
<updated>2012-05-19T13:03:53+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-19T13:03:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c43a8f282f66cf86cf30e56ef8efc61264fd6e86'/>
<id>c43a8f282f66cf86cf30e56ef8efc61264fd6e86</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 #265 from charris/backport-random</title>
<updated>2012-05-04T19:43:09+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-04T19:43:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7b907a8c3168ccc59c0a8458ae06e074a8f71908'/>
<id>7b907a8c3168ccc59c0a8458ae06e074a8f71908</id>
<content type='text'>
Backport numpy.random fix for MSVC.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport numpy.random fix for MSVC.</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #263 from charris/backport-poly</title>
<updated>2012-05-04T19:42:09+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-04T19:42:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8cc4a7d21a7b4bef7c6468c526019b1603995c1b'/>
<id>8cc4a7d21a7b4bef7c6468c526019b1603995c1b</id>
<content type='text'>
Backport numpy.poly bug fixes and documentation improvements.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport numpy.poly bug fixes and documentation improvements.</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #262 from charris/backport-f2py</title>
<updated>2012-05-04T19:41:19+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-04T19:41:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a16a4305313939ffc644bf7201233708ba4e5a9a'/>
<id>a16a4305313939ffc644bf7201233708ba4e5a9a</id>
<content type='text'>
Backport f2py fixes and improvements.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport f2py fixes and improvements.</pre>
</div>
</content>
</entry>
</feed>
