<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/ma/tests, branch main</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>Merge branch 'main' into deprecate-find-common-type</title>
<updated>2023-05-13T17:02:49+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2023-05-13T17:02:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=5187067d7ad176ee3614beab2b99a524dd719aa8'/>
<id>5187067d7ad176ee3614beab2b99a524dd719aa8</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 masked array ravel order for A (and somewhat K)</title>
<updated>2023-04-28T12:41:00+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2023-04-28T12:41:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=e8920038ade22a8966fb977e77aa00a82142901b'/>
<id>e8920038ade22a8966fb977e77aa00a82142901b</id>
<content type='text'>
Swaps the order to the correct thing and thus

closes gh-23651
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Swaps the order to the correct thing and thus

closes gh-23651
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #23626 from seberg/issue-22912</title>
<updated>2023-04-21T22:18:38+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2023-04-21T22:18:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=41b0722d1eaf982adfc2ebc2a4a8ea1f6dfc65d8'/>
<id>41b0722d1eaf982adfc2ebc2a4a8ea1f6dfc65d8</id>
<content type='text'>
BUG: Fix masked array raveling when `order="A"` or `order="K"`</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: Fix masked array raveling when `order="A"` or `order="K"`</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Ignore invalid and overflow warnings in masked setitem</title>
<updated>2023-04-21T10:23:23+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2023-04-21T10:23:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=0655cb9e24cff97642c70a98c5258bcbe7a6c3d3'/>
<id>0655cb9e24cff97642c70a98c5258bcbe7a6c3d3</id>
<content type='text'>
Giving a warning for invalid/overflow in settitem/casts is right
(IMO), however for masked arrays it can be surprising since the
warning is not useful if the value is invalid but also masked.

So, simply blanket ignore the relevant warnings in setitem via errstate.
(There may be some other cases like `.astype()` where it might be
helpful to MA users to just blanket opt-out of these new warnings.)

Closes gh-23000
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Giving a warning for invalid/overflow in settitem/casts is right
(IMO), however for masked arrays it can be surprising since the
warning is not useful if the value is invalid but also masked.

So, simply blanket ignore the relevant warnings in setitem via errstate.
(There may be some other cases like `.astype()` where it might be
helpful to MA users to just blanket opt-out of these new warnings.)

Closes gh-23000
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix masked array raveling when `order="A"` or `order="K"`</title>
<updated>2023-04-21T09:52:06+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2023-04-21T09:41:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=77a5aab54e10e063773e9aaf0e3730bf0cfefa9b'/>
<id>77a5aab54e10e063773e9aaf0e3730bf0cfefa9b</id>
<content type='text'>
This transitively fixes gh-22912.  I had alooked a bit into whether
it is worthwhile to preserve the mask order, but TBH, we seem to not
do so in so many places, that I don't think it really is worthwhile.

Applying `order="K"` or `order="A"` to the data and mask separately
is an big bug though.

Closes gh-22912
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This transitively fixes gh-22912.  I had alooked a bit into whether
it is worthwhile to preserve the mask order, but TBH, we seem to not
do so in so many places, that I don't think it really is worthwhile.

Applying `order="K"` or `order="A"` to the data and mask separately
is an big bug though.

Closes gh-22912
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: fix format</title>
<updated>2023-03-22T01:22:49+00:00</updated>
<author>
<name>yuki</name>
<email>drsuaimqjgar@gmail.com</email>
</author>
<published>2023-03-03T00:08:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=604ce598760d632b5aa286b1cfcac9b7df6be090'/>
<id>604ce598760d632b5aa286b1cfcac9b7df6be090</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'main' into enh-ma-dot</title>
<updated>2023-03-22T01:16:42+00:00</updated>
<author>
<name>yuki</name>
<email>drsuaimqjgar@gmail.com</email>
</author>
<published>2023-03-22T01:16:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=6f1679c48d19198273c02379acd68cb8c601d21e'/>
<id>6f1679c48d19198273c02379acd68cb8c601d21e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: ma with structured dtype</title>
<updated>2023-03-03T23:16:08+00:00</updated>
<author>
<name>Tyler Reddy</name>
<email>tyler.je.reddy@gmail.com</email>
</author>
<published>2023-03-03T20:06:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=9fe3554b33ed1c3e7c8c78a8ac97322c0a16f7cb'/>
<id>9fe3554b33ed1c3e7c8c78a8ac97322c0a16f7cb</id>
<content type='text'>
Fixes #22041

* add regression test and fix for creating a masked array with a
structured dtype; the test is simply for lack of error in the repoducer

* the concern expressed by core team in matching issue was that
`astropy` might be negatively affected; I ran full `astropy` (hash: `c9ad7c56`)
test suite locally with this feature branch and it seemed "ok,"
just 1 unrelated network failure in the network-requiring tests
(`test_ftp_tls_auto`):

```1 failed, 21430 passed, 3490 skipped, 176 xfailed, 23275 warnings in
430.18s (0:07:10)```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #22041

* add regression test and fix for creating a masked array with a
structured dtype; the test is simply for lack of error in the repoducer

* the concern expressed by core team in matching issue was that
`astropy` might be negatively affected; I ran full `astropy` (hash: `c9ad7c56`)
test suite locally with this feature branch and it seemed "ok,"
just 1 unrelated network failure in the network-requiring tests
(`test_ftp_tls_auto`):

```1 failed, 21430 passed, 3490 skipped, 176 xfailed, 23275 warnings in
430.18s (0:07:10)```
</pre>
</div>
</content>
</entry>
<entry>
<title>add support for non-2d arrays</title>
<updated>2023-03-03T03:07:17+00:00</updated>
<author>
<name>yuki</name>
<email>drsuaimqjgar@gmail.com</email>
</author>
<published>2023-03-03T00:08:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=03edb7b8dddb12198509d2bf602ea8b382d27199'/>
<id>03edb7b8dddb12198509d2bf602ea8b382d27199</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DEP: deprecate `product`, `cumproduct`, `sometrue`, `alltrue`</title>
<updated>2023-03-02T15:10:41+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2023-03-02T14:57:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=9990f98f2e9e1a55f5d42206cbc6709a3efff418'/>
<id>9990f98f2e9e1a55f5d42206cbc6709a3efff418</id>
<content type='text'>
[skip cirrus]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[skip cirrus]
</pre>
</div>
</content>
</entry>
</feed>
