<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/random, branch v1.20.0</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>Remove duplicate axis check</title>
<updated>2021-01-24T20:02:10+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2021-01-23T19:36:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3ed7689c9e5684b5490848f6f3b56c2bfc8cc6cf'/>
<id>3ed7689c9e5684b5490848f6f3b56c2bfc8cc6cf</id>
<content type='text'>
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: shuffling empty array with axis=1 was broken</title>
<updated>2021-01-24T20:02:10+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2021-01-23T13:16:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=61f095bfaf161965539a670b7be40445d56b9741'/>
<id>61f095bfaf161965539a670b7be40445d56b9741</id>
<content type='text'>
This would trigger:
```
NotImplementedError: Axis argument is only supported on ndarray objects
```
because empty arrays and array scalars would take the "untyped" path.

The bug exists only for Generator, not in RandomState (it doesn't have
axis keyword for `shuffle`), but update both because it keeps
implementations in sync and the change results in more understandable
code also for RandomState.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This would trigger:
```
NotImplementedError: Axis argument is only supported on ndarray objects
```
because empty arrays and array scalars would take the "untyped" path.

The bug exists only for Generator, not in RandomState (it doesn't have
axis keyword for `shuffle`), but update both because it keeps
implementations in sync and the change results in more understandable
code also for RandomState.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: warn when shuffling unrecognized objects</title>
<updated>2021-01-24T20:02:10+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2021-01-23T12:59:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b9711cff97bd4347c04eef56371e6f6e8fe83243'/>
<id>b9711cff97bd4347c04eef56371e6f6e8fe83243</id>
<content type='text'>
Closes gh-18206
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-18206
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: remove stray '+' from f-string upgrade</title>
<updated>2020-12-04T20:55:57+00:00</updated>
<author>
<name>Derek Homeier</name>
<email>dhomeie@gwdg.de</email>
</author>
<published>2020-12-04T11:26:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ff43276f798f2a4e5688ffde94cdc5898f468d57'/>
<id>ff43276f798f2a4e5688ffde94cdc5898f468d57</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fixed an issue where `.pyi` weren't picked up by numpy sub-packages</title>
<updated>2020-11-03T14:08:38+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>b.f.van.beek@vu.nl</email>
</author>
<published>2020-11-03T14:08:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=99051b40de3b77c166a24250df3fd38689aa412e'/>
<id>99051b40de3b77c166a24250df3fd38689aa412e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Make test suite work in FIPS (140-2) Mode</title>
<updated>2020-10-29T07:42:35+00:00</updated>
<author>
<name>Nikola Forró</name>
<email>nforro@redhat.com</email>
</author>
<published>2020-10-26T17:54:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=14c6e451edcf65d412443c7fb045ab706daf3b73'/>
<id>14c6e451edcf65d412443c7fb045ab706daf3b73</id>
<content type='text'>
Tests using MD5 algorithms fail in FIPS Mode because MD5 is not FIPS
compliant.

Replace MD5 with SHA256 to overcome that.

Signed-off-by: Nikola Forró &lt;nforro@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tests using MD5 algorithms fail in FIPS Mode because MD5 is not FIPS
compliant.

Replace MD5 with SHA256 to overcome that.

Signed-off-by: Nikola Forró &lt;nforro@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: simplify source path names in compilation test</title>
<updated>2020-10-27T20:58:06+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-10-27T20:43:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=76d12d3fcabad0371b24753ba7d36ca5b1d61bcf'/>
<id>76d12d3fcabad0371b24753ba7d36ca5b1d61bcf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>conversion of strings to fstrings</title>
<updated>2020-10-24T11:12:06+00:00</updated>
<author>
<name>Jakob</name>
<email>jakobjakobson13@posteo.de</email>
</author>
<published>2020-10-24T11:12:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b6e5711fd50969fb87d784e835d9ccc62dde716d'/>
<id>b6e5711fd50969fb87d784e835d9ccc62dde716d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: random: Fix default_rng docstring (#17375)</title>
<updated>2020-09-25T12:21:31+00:00</updated>
<author>
<name>Albert Villanova del Moral</name>
<email>8515462+albertvillanova@users.noreply.github.com</email>
</author>
<published>2020-09-25T12:21:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=02e6b062027666b22c68d91e280b28f57ee9c2b5'/>
<id>02e6b062027666b22c68d91e280b28f57ee9c2b5</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 #17104 from BvB93/sub-modules</title>
<updated>2020-09-07T16:48:48+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-09-07T16:48:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=dec8879b4b6b032e168a417b342056d000d4318e'/>
<id>dec8879b4b6b032e168a417b342056d000d4318e</id>
<content type='text'>
ENH: Add placeholder stubs for all sub-modules</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: Add placeholder stubs for all sub-modules</pre>
</div>
</content>
</entry>
</feed>
