<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/core/include, branch v1.22.0rc3</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>MAINT: Remove specialized `out=` casting loops and introduce resolvers for reductions!</title>
<updated>2021-12-07T22:57:19+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2021-12-04T01:36:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4d895526c339332b6f1b5fc801dd3b4a8eb54c07'/>
<id>4d895526c339332b6f1b5fc801dd3b4a8eb54c07</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Restore support for i686 and PowerPC (OS X)</title>
<updated>2021-11-27T16:37:09+00:00</updated>
<author>
<name>Evan Miller</name>
<email>emmiller@gmail.com</email>
</author>
<published>2021-11-21T00:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9d36e08eddcf7e025734e1056e5368eda3a81078'/>
<id>9d36e08eddcf7e025734e1056e5368eda3a81078</id>
<content type='text'>
Downstream report: https://trac.macports.org/ticket/64019
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Downstream report: https://trac.macports.org/ticket/64019
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #20373 from charris/prepare-for-1.22-branch</title>
<updated>2021-11-15T20:18:53+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2021-11-15T20:18:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7310c09cb07e11e6ae146957166eac2f17c0729d'/>
<id>7310c09cb07e11e6ae146957166eac2f17c0729d</id>
<content type='text'>
MAINT: Prepare for branching maintenance/1.22.x</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MAINT: Prepare for branching maintenance/1.22.x</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Prepare for branching maintenace/1.22.x</title>
<updated>2021-11-15T14:19:16+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2021-11-07T21:38:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9c8c88eb68565b80329503f6225b1ee6ebef2356'/>
<id>9c8c88eb68565b80329503f6225b1ee6ebef2356</id>
<content type='text'>
- Update .mailmap
- Update NPY_1_22_API_VERSION in numpyconfig.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Update .mailmap
- Update NPY_1_22_API_VERSION in numpyconfig.h
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #19173 from czgdp1807/never_copy</title>
<updated>2021-11-15T08:26:04+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2021-11-15T08:26:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7125cdfa21081b91907a65b6c888791cf150a0b2'/>
<id>7125cdfa21081b91907a65b6c888791cf150a0b2</id>
<content type='text'>
ENH: Add support for copy modes to NumPy</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: Add support for copy modes to NumPy</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Revert from `long double` changes, and force `npymath` to respect `npy_longdouble` (#20360)</title>
<updated>2021-11-13T18:35:23+00:00</updated>
<author>
<name>Sayed Adel</name>
<email>seiko@imavr.com</email>
</author>
<published>2021-11-13T18:35:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9ba1440501d53d72ecce24ed207db62e3037d807'/>
<id>9ba1440501d53d72ecce24ed207db62e3037d807</id>
<content type='text'>
In some certain cases mostly workarounds, there's a necessity to define `npy_longdouble`
as `double` even if that was against the compiler
implementation(sizeof(long double) != sizeof(double)).

Therefore, avoid `long double`, use `npy_longdouble` instead,
and when it comes to standard math functions make sure of using
the double version when `NPY_SIZEOF_LONGDOUBLE` == `NPY_SIZEOF_DOUBLE`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In some certain cases mostly workarounds, there's a necessity to define `npy_longdouble`
as `double` even if that was against the compiler
implementation(sizeof(long double) != sizeof(double)).

Therefore, avoid `long double`, use `npy_longdouble` instead,
and when it comes to standard math functions make sure of using
the double version when `NPY_SIZEOF_LONGDOUBLE` == `NPY_SIZEOF_DOUBLE`.</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Slightly extend to docs to note that we assume no-copy buffer protocol</title>
<updated>2021-11-12T22:10:25+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2021-11-12T22:02:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9fee0f8db5def3d119a38845111724f436fcfe2e'/>
<id>9fee0f8db5def3d119a38845111724f436fcfe2e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove private CopyMode enum to private header</title>
<updated>2021-11-12T21:24:57+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2021-11-12T21:24:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=84951a63df4dce887f31969e2a109936b368198a'/>
<id>84951a63df4dce887f31969e2a109936b368198a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Small style fixups for never-copy changes</title>
<updated>2021-11-12T21:20:49+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2021-11-12T21:20:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4b2cd27a5eceb288685020c8efa925ee3c72aed1'/>
<id>4b2cd27a5eceb288685020c8efa925ee3c72aed1</id>
<content type='text'>
Yes, these may be slightly biased towards my own opinions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Yes, these may be slightly biased towards my own opinions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'main' into never_copy</title>
<updated>2021-11-12T15:15:35+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2021-11-12T15:15:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=eccb8dfbd9b07183e16a1144e8d5d76936671bfc'/>
<id>eccb8dfbd9b07183e16a1144e8d5d76936671bfc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
