<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/_pytesttester.py, branch v1.22.0rc2</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>Use catch_warnings(record=True) instead of simplefilter('ignore')</title>
<updated>2021-08-23T23:46:26+00:00</updated>
<author>
<name>Aaron Meurer</name>
<email>asmeurer@gmail.com</email>
</author>
<published>2021-08-23T23:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7091e4c48ce7af8a5263b6808a6d7976d4af4c6f'/>
<id>7091e4c48ce7af8a5263b6808a6d7976d4af4c6f</id>
<content type='text'>
There is a test that fails in the presence of simplefilter('ignore')
(test_warnings.py). catch_warnings(record=True) seems to be a way to get the
same behavior without failing the test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is a test that fails in the presence of simplefilter('ignore')
(test_warnings.py). catch_warnings(record=True) seems to be a way to get the
same behavior without failing the test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Python 3.7 checks from the array API code</title>
<updated>2021-08-23T21:21:24+00:00</updated>
<author>
<name>Aaron Meurer</name>
<email>asmeurer@gmail.com</email>
</author>
<published>2021-08-23T21:21:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9978cc5a1861533abf7c6ed7b0f4e1d732171094'/>
<id>9978cc5a1861533abf7c6ed7b0f4e1d732171094</id>
<content type='text'>
NumPy has dropped Python 3.7, so these are no longer necessary (and they
didn't completely work anyway).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NumPy has dropped Python 3.7, so these are no longer necessary (and they
didn't completely work anyway).
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the tests for Python 3.7</title>
<updated>2021-08-06T22:24:34+00:00</updated>
<author>
<name>Aaron Meurer</name>
<email>asmeurer@gmail.com</email>
</author>
<published>2021-08-06T22:24:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=5c7074f90ee7093f231816cb356cb787e0f22802'/>
<id>5c7074f90ee7093f231816cb356cb787e0f22802</id>
<content type='text'>
The array_api submodule needs to be skipped entirely, as it uses non-3.7
compatible syntax.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The array_api submodule needs to be skipped entirely, as it uses non-3.7
compatible syntax.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make the array API submodule not break the test suite</title>
<updated>2021-08-06T22:10:09+00:00</updated>
<author>
<name>Aaron Meurer</name>
<email>asmeurer@gmail.com</email>
</author>
<published>2021-08-06T22:10:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b6f71c8fc742e09d803c99fe41c06d6f2a81d4de'/>
<id>b6f71c8fc742e09d803c99fe41c06d6f2a81d4de</id>
<content type='text'>
The warning is issued on import, which otherwise breaks pytest collection. If
we manually import early and ignore the warning, any further imports of the
module won't issue the warning again, due to the way Python caches imports.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The warning is issued on import, which otherwise breaks pytest collection. If
we manually import early and ignore the warning, any further imports of the
module won't issue the warning again, due to the way Python caches imports.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: add new function `_opt_info()` to utils provides the optimization info of NumPy build</title>
<updated>2021-04-22T21:58:02+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2020-11-10T16:16:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=472b152fdaad523b451410165f126b473f6de0df'/>
<id>472b152fdaad523b451410165f126b473f6de0df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fixing boilerplate code example</title>
<updated>2020-11-24T22:15:52+00:00</updated>
<author>
<name>Al-Baraa El-Hag</name>
<email>a.elhag01@gmail.com</email>
</author>
<published>2020-11-24T22:11:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d9c9a3f0f300a9737a34fef5297bcd8d0484efd8'/>
<id>d9c9a3f0f300a9737a34fef5297bcd8d0484efd8</id>
<content type='text'>
_pytesttester.py had either on old implementation or a wrong one
Updated it with the current practice
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
_pytesttester.py had either on old implementation or a wrong one
Updated it with the current practice
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Simplify Hypothesis config</title>
<updated>2020-11-15T04:54:07+00:00</updated>
<author>
<name>Zac-HD</name>
<email>zac.hatfield.dodds@gmail.com</email>
</author>
<published>2020-11-15T04:53:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ba315034759fbf91c61bb55390edc86e7b2627f3'/>
<id>ba315034759fbf91c61bb55390edc86e7b2627f3</id>
<content type='text'>
All configuration is now done in conftest.py, and detection of dev/user mode is based on the presence of pytest.ini in the repo root.  See #17390.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All configuration is now done in conftest.py, and detection of dev/user mode is based on the presence of pytest.ini in the repo root.  See #17390.
</pre>
</div>
</content>
</entry>
<entry>
<title>Configure hypothesis for np.test()</title>
<updated>2020-07-23T04:23:40+00:00</updated>
<author>
<name>Zac-HD</name>
<email>zac.hatfield.dodds@gmail.com</email>
</author>
<published>2020-07-16T04:54:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3d74fab153420baa61dd8ccd284265393218f471'/>
<id>3d74fab153420baa61dd8ccd284265393218f471</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: [6/7] enable multi-platform SIMD compiler optimizations</title>
<updated>2020-06-16T16:42:02+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2020-06-13T16:15:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1bd0a621b56ff82f642c4e1f3ef4f05723a6a22a'/>
<id>1bd0a621b56ff82f642c4e1f3ef4f05723a6a22a</id>
<content type='text'>
  - Add new attributes to umath module

    * __cpu_baseline__ a list contains the minimal set of required optimizations
      that supported by the compiler and platform according to the specified
      values to command argument '--cpu-baseline'.

    * __cpu_dispatch__ a list contains the dispatched set of additional optimizations
      that supported by the compiler and platform according to the specified
      values to command argument '--cpu-dispatch'

  - Print required and additional optimizations during the run of PytestTester
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  - Add new attributes to umath module

    * __cpu_baseline__ a list contains the minimal set of required optimizations
      that supported by the compiler and platform according to the specified
      values to command argument '--cpu-baseline'.

    * __cpu_dispatch__ a list contains the dispatched set of additional optimizations
      that supported by the compiler and platform according to the specified
      values to command argument '--cpu-dispatch'

  - Print required and additional optimizations during the run of PytestTester
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Make if else clause more readable</title>
<updated>2020-04-14T17:21:18+00:00</updated>
<author>
<name>Anirudh Subramanian</name>
<email>anirudh2290@ufl.edu</email>
</author>
<published>2020-04-14T17:15:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6736d8c53ab80178195da8b5fe61e174cc5ea26e'/>
<id>6736d8c53ab80178195da8b5fe61e174cc5ea26e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
