<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/__init__.pxd, 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>DEP: Disable PyUFunc_GenericFunction and PyUFunc_SetUsesArraysAsData</title>
<updated>2021-03-29T19:03:47+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2021-03-29T18:46:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a115369c630fd373acbb80464a0122722a521185'/>
<id>a115369c630fd373acbb80464a0122722a521185</id>
<content type='text'>
Both functions have been deprecated in 1.19.x without complaints
(so far).  The first function is largely identical to a Python ufunc
call.  The second function had served internal NumPy purposes until
NumPy 1.6 (probably), and since then had a comment that it should
probably be removed (it was not documented).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both functions have been deprecated in 1.19.x without complaints
(so far).  The first function is largely identical to a Python ufunc
call.  The second function had served internal NumPy purposes until
NumPy 1.6 (probably), and since then had a comment that it should
probably be removed (it was not documented).
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #17150 from eric-wieser/cython-isinstance</title>
<updated>2020-09-12T20:36:09+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2020-09-12T20:36:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8adeca227a39640b0ad4db38ca34a77a0bb50c8f'/>
<id>8adeca227a39640b0ad4db38ca34a77a0bb50c8f</id>
<content type='text'>
ENH: Add support for the abstract scalars to cython code</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: Add support for the abstract scalars to cython code</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix incorrect cython definition of npy_cfloat</title>
<updated>2020-08-24T10:17:23+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2020-08-24T10:17:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=453ec52f925ea841d9755f1dea875407a07f4847'/>
<id>453ec52f925ea841d9755f1dea875407a07f4847</id>
<content type='text'>
The definition in the numpy headers is a pair of `float`s not `double`s.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The definition in the numpy headers is a pair of `float`s not `double`s.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add support for the abstract scalars to cython code</title>
<updated>2020-08-24T10:10:15+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2020-08-24T09:32:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=52b4c49ef8ad74a811b9b0e751d913da9d1a5933'/>
<id>52b4c49ef8ad74a811b9b0e751d913da9d1a5933</id>
<content type='text'>
This makes `isinstance` checks slightly faster
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes `isinstance` checks slightly faster
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add NumPy declarations to be used by Cython 3.0+ (#16986)</title>
<updated>2020-08-05T04:28:30+00:00</updated>
<author>
<name>scoder</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2020-08-05T04:28:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e1211b83062881d34790f45bd666a62cf00292a3'/>
<id>e1211b83062881d34790f45bd666a62cf00292a3</id>
<content type='text'>
* Create copy of numpy.pxd for Cython 3.0 changes and improve it.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Create copy of numpy.pxd for Cython 3.0 changes and improve it.</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix PyArray_SearchSorted signature.</title>
<updated>2020-07-01T16:09:11+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-07-01T16:09:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2f83e699918be6454a210d9e59a287067139961f'/>
<id>2f83e699918be6454a210d9e59a287067139961f</id>
<content type='text'>
See comment on merged PR #16223. The `perm` variable may be NULL,
so cannot be passed as object.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See comment on merged PR #16223. The `perm` variable may be NULL,
so cannot be passed as object.
</pre>
</div>
</content>
</entry>
<entry>
<title>First stab at tests, try on the CI</title>
<updated>2020-05-21T22:54:30+00:00</updated>
<author>
<name>jbrockmendel</name>
<email>jbrockmendel@gmail.com</email>
</author>
<published>2020-05-21T22:54:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0d7909bfb350bf33c86f40636e3b8717e5c41f7e'/>
<id>0d7909bfb350bf33c86f40636e3b8717e5c41f7e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix np.dtype declaration</title>
<updated>2020-05-21T22:03:45+00:00</updated>
<author>
<name>jbrockmendel</name>
<email>jbrockmendel@gmail.com</email>
</author>
<published>2020-05-21T22:03:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=690a0ab4c65bb828b73526ad9064d7495fdbd6b6'/>
<id>690a0ab4c65bb828b73526ad9064d7495fdbd6b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>troubleshoot CI</title>
<updated>2020-05-21T22:03:45+00:00</updated>
<author>
<name>jbrockmendel</name>
<email>jbrockmendel@gmail.com</email>
</author>
<published>2020-05-18T20:42:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=97c157f7dd89f8517f52d865518b4a0a6de5effa'/>
<id>97c157f7dd89f8517f52d865518b4a0a6de5effa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move below int64_t declaration</title>
<updated>2020-05-21T22:03:45+00:00</updated>
<author>
<name>jbrockmendel</name>
<email>jbrockmendel@gmail.com</email>
</author>
<published>2020-05-18T20:23:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8cc379da170ad95eb8b5b899ee3e450526576e85'/>
<id>8cc379da170ad95eb8b5b899ee3e450526576e85</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
