<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git, 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>Merge pull request #2787 from bfroehle/unique_argsort</title>
<updated>2012-12-05T13:21:07+00:00</updated>
<author>
<name>njsmith</name>
<email>njs@pobox.com</email>
</author>
<published>2012-12-05T13:21:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3f5862193a6085a4d59f4dde8d006670a24cae04'/>
<id>3f5862193a6085a4d59f4dde8d006670a24cae04</id>
<content type='text'>
np.unique: TypeError: requested sort not available for type</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
np.unique: TypeError: requested sort not available for type</pre>
</div>
</content>
</entry>
<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>Merge pull request #2739 from certik/fix346</title>
<updated>2012-11-14T19:54:03+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-11-14T19:54:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=023e559eda106cc48f82408a5958c7444d3769b2'/>
<id>023e559eda106cc48f82408a5958c7444d3769b2</id>
<content type='text'>
TST: mark longdouble tests for spacing/nextafter as knownfail on PPC.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
TST: mark longdouble tests for spacing/nextafter as knownfail on PPC.</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>Copy Travis-CI and Tox config from master</title>
<updated>2012-07-04T18:06:28+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2012-07-04T18:06:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=23348280208f267f066e8501d1b646289eeef722'/>
<id>23348280208f267f066e8501d1b646289eeef722</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>MAINT: set version to 1.6.3-dev</title>
<updated>2012-05-20T08:28:59+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-20T08:28:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=903d9b7d2a5f899f3ef17841ec3ee12ba657d78a'/>
<id>903d9b7d2a5f899f3ef17841ec3ee12ba657d78a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>REL: set version to 1.6.2.</title>
<updated>2012-05-19T13:41:41+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2012-05-19T13:41:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ca07bce202ae26b6f0a73870eb2ef0b88e0210c5'/>
<id>ca07bce202ae26b6f0a73870eb2ef0b88e0210c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>
</feed>
