<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/ma/tests, branch v1.15.3</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>BUG: Fix MaskedArray fill_value type conversion.</title>
<updated>2018-10-21T18:04:26+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-10-19T18:45:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0af23d1994e4bdb27c89e718c19f7aede981c05c'/>
<id>0af23d1994e4bdb27c89e718c19f7aede981c05c</id>
<content type='text'>
Fixes the regression introduced by #10211 where the masked array fill
value type was not properly converted by astype.

Closes #12070.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes the regression introduced by #10211 where the masked array fill
value type was not properly converted by astype.

Closes #12070.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix test sensitive to platform byte order.</title>
<updated>2018-08-18T13:52:11+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-08-13T20:44:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9a8cce85151589cb82944c29ed5a74a2cd2a619c'/>
<id>9a8cce85151589cb82944c29ed5a74a2cd2a619c</id>
<content type='text'>
The TestMaskedArrayMethods.test_sort_flexible test was failing for for
the subarray checks on big endian systems. That was probably due to
subarrays being sorted as bytestrings. This fixes the test by simply
checking that the sort does not error rather than checking the result.

Closes #11716.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The TestMaskedArrayMethods.test_sort_flexible test was failing for for
the subarray checks on big endian systems. That was probably due to
subarrays being sorted as bytestrings. This fixes the test by simply
checking that the sort does not error rather than checking the result.

Closes #11716.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Undo behavior change in ma.masked_values(shrink=True)</title>
<updated>2018-06-10T18:09:57+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-06-10T18:09:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=51dc6f4064a4eae2bae764de1579e009160b9a84'/>
<id>51dc6f4064a4eae2bae764de1579e009160b9a84</id>
<content type='text'>
This change was introduced as part of #10232

Fixes #11112
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change was introduced as part of #10232

Fixes #11112
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #10314 from mhvk/ma-array-finalize-mask-view</title>
<updated>2018-05-29T07:54:27+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-05-29T07:54:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6ccb03d5e0bfe3cc9fd2c69e0d9606447c358a2d'/>
<id>6ccb03d5e0bfe3cc9fd2c69e0d9606447c358a2d</id>
<content type='text'>
BUG: Ensure __array_finalize__ cannot back-mangle shape</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: Ensure __array_finalize__ cannot back-mangle shape</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: __copy__ and __deepcopy__ should preserve MaskedConstant (#11038)</title>
<updated>2018-05-26T05:51:33+00:00</updated>
<author>
<name>Kritika Jalan</name>
<email>krithi710@gmail.com</email>
</author>
<published>2018-05-26T05:51:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c1fc882277bcec42e11f67c6eced43d68cec4d7a'/>
<id>c1fc882277bcec42e11f67c6eced43d68cec4d7a</id>
<content type='text'>
Fixes #11021</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #11021</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: move remaining MaskedArray matrix tests to matrixlib.</title>
<updated>2018-05-22T20:13:04+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2018-05-22T20:09:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c17c42924231571b0df833ef3df59194bb3dcb9d'/>
<id>c17c42924231571b0df833ef3df59194bb3dcb9d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Ensure __array_finalize__ cannot back-mangle shape</title>
<updated>2018-05-16T15:01:33+00:00</updated>
<author>
<name>Marten H. van Kerkwijk</name>
<email>mhvk@weasel.astro.utoronto.ca</email>
</author>
<published>2018-01-02T19:40:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6756edfad754ed1b65f44e8fe84cf2c9d2f53ce9'/>
<id>6756edfad754ed1b65f44e8fe84cf2c9d2f53ce9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: move all masked array matrix tests to matrixlib.</title>
<updated>2018-04-27T16:04:03+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2018-04-26T21:39:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f18ebf68cfdf7aa816e42b1d358ad416b31a0ec1'/>
<id>f18ebf68cfdf7aa816e42b1d358ad416b31a0ec1</id>
<content type='text'>
Further progress in isolating matrix in preparation of its
deprecation.  There is one place left with an explicit reference
to matrix (in MaskedArray.count), which is to be solved later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Further progress in isolating matrix in preparation of its
deprecation.  There is one place left with an explicit reference
to matrix (in MaskedArray.count), which is to be solved later.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove all uses of run_module_suite.</title>
<updated>2018-04-07T00:20:56+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-04-04T16:33:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7bf0564f87511d9e7b6287b3eec0857d0d7742df'/>
<id>7bf0564f87511d9e7b6287b3eec0857d0d7742df</id>
<content type='text'>
That function is nose specific and has not worked since `__init__` files
were added to the tests directories.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That function is nose specific and has not worked since `__init__` files
were added to the tests directories.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Switch to using pytest markers</title>
<updated>2018-04-04T12:36:36+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-03-25T18:34:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7e5a41de9fab731e27a761c01302a0a93e2d1070'/>
<id>7e5a41de9fab731e27a761c01302a0a93e2d1070</id>
<content type='text'>
Use standard pytest markers everywhere in the numpy tests. At this point
there should be no nose dependency. However, nose is required to test
the legacy decorators if so desired.

At this point, numpy test cannot be run in the way with runtests, rather
installed numpy can be tested with `pytest --pyargs numpy` as long as
that is not run from the repo. Run it from the tools directory or some
such.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use standard pytest markers everywhere in the numpy tests. At this point
there should be no nose dependency. However, nose is required to test
the legacy decorators if so desired.

At this point, numpy test cannot be run in the way with runtests, rather
installed numpy can be tested with `pytest --pyargs numpy` as long as
that is not run from the repo. Run it from the tools directory or some
such.
</pre>
</div>
</content>
</entry>
</feed>
