<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/testing, branch meson</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 #22533 from ngoldbaum/ufunc-and-function-listing</title>
<updated>2022-11-29T16:56:10+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2022-11-29T16:56:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2cf8c40727b08c029cdaf7fce803d031a60499a2'/>
<id>2cf8c40727b08c029cdaf7fce803d031a60499a2</id>
<content type='text'>
API: Add numpy.testing.overrides to aid testing of custom array containers</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
API: Add numpy.testing.overrides to aid testing of custom array containers</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: testing: Fix typo: nulps -&gt; nulp</title>
<updated>2022-11-18T16:02:23+00:00</updated>
<author>
<name>warren</name>
<email>warren.weckesser@gmail.com</email>
</author>
<published>2022-11-18T15:55:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c6e75fce247d3d698ef76bb2c550858d32241268'/>
<id>c6e75fce247d3d698ef76bb2c550858d32241268</id>
<content type='text'>
[skip actions] [skip travis] [skip azp]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[skip actions] [skip travis] [skip azp]
</pre>
</div>
</content>
</entry>
<entry>
<title>API: Add numpy.testing.overrides to aid testing of custom array containers</title>
<updated>2022-11-16T16:14:25+00:00</updated>
<author>
<name>Nathan Goldbaum</name>
<email>nathan.goldbaum@gmail.com</email>
</author>
<published>2022-11-04T18:13:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1a8d3ca45f0a7294784bc200ec436dc8563f654a'/>
<id>1a8d3ca45f0a7294784bc200ec436dc8563f654a</id>
<content type='text'>
Closes #15544
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #15544
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Skip tests that are not currently supported in wasm</title>
<updated>2022-11-11T10:52:06+00:00</updated>
<author>
<name>Hood Chatham</name>
<email>roberthoodchatham@gmail.com</email>
</author>
<published>2022-11-10T19:54:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=08c6e9c142e619ac5175b6a13342ba2f2c571ddd'/>
<id>08c6e9c142e619ac5175b6a13342ba2f2c571ddd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST,MAINT: Replace most `setup` with `setup_method` (also teardown)</title>
<updated>2022-10-27T12:57:14+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2022-10-27T12:57:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=67841947b458f6bdc6c40d014512da9bc4717a3e'/>
<id>67841947b458f6bdc6c40d014512da9bc4717a3e</id>
<content type='text'>
In some cases, the replacement is clearly not what is intended,
in those (where setup was called explicitly), I mostly renamed
`setup` to `_setup`.
The `test_ccompile_opt` is a bit confusing, so left it right now
(this will probably fail)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In some cases, the replacement is clearly not what is intended,
in those (where setup was called explicitly), I mostly renamed
`setup` to `_setup`.
The `test_ccompile_opt` is a bit confusing, so left it right now
(this will probably fail)
</pre>
</div>
</content>
</entry>
<entry>
<title>PERF: Eliminate slow check for pypy during numpy import (#22163)</title>
<updated>2022-08-23T06:55:56+00:00</updated>
<author>
<name>Pieter Eendebak</name>
<email>pieter.eendebak@gmail.com</email>
</author>
<published>2022-08-23T06:55:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=acdd0e3ffff0db9f45951c6b51887937ca31935e'/>
<id>acdd0e3ffff0db9f45951c6b51887937ca31935e</id>
<content type='text'>
This PR replaces the import of platform and a call to platform.python_implementation() with a check using sys.implementation.name to improve the numpy import time. The improvement is about 5-10 ms (system dependent).

Also see #22061

Co-authored-by: Matti Picus &lt;matti.picus@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR replaces the import of platform and a call to platform.python_implementation() with a check using sys.implementation.name to improve the numpy import time. The improvement is about 5-10 ms (system dependent).

Also see #22061

Co-authored-by: Matti Picus &lt;matti.picus@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: allow importlib.LazyLoader to work with numpy and add test of this (#22045)</title>
<updated>2022-07-27T13:05:58+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2022-07-27T13:05:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6e1557900da3c2cc8455449e7e76b07f7c36b32a'/>
<id>6e1557900da3c2cc8455449e7e76b07f7c36b32a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: reorder includes for system installations</title>
<updated>2022-07-20T13:36:56+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2022-07-20T13:31:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0723ee83deb5b130dee2cf7f88b8e610797e01c2'/>
<id>0723ee83deb5b130dee2cf7f88b8e610797e01c2</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 #21795 from hmaarrfk/no_overflow_unsigned</title>
<updated>2022-07-07T02:04:18+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2022-07-07T02:04:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=43b666c9296b24bc072f13e43dd2c605b6e659d2'/>
<id>43b666c9296b24bc072f13e43dd2c605b6e659d2</id>
<content type='text'>
ENH: Ensure that assertion of unsigned dtypes does not return results</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: Ensure that assertion of unsigned dtypes does not return results</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Ensure that assertion of unsigned dtypes does not return results</title>
<updated>2022-06-30T02:59:48+00:00</updated>
<author>
<name>Mark Harfouche</name>
<email>mark.harfouche@gmail.com</email>
</author>
<published>2022-06-19T02:31:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=162b63b4ee2f9567c638699a92fc8477e281c924'/>
<id>162b63b4ee2f9567c638699a92fc8477e281c924</id>
<content type='text'>
that wrapped around.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
that wrapped around.
</pre>
</div>
</content>
</entry>
</feed>
