<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/doc, branch auto</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>MAINT: Fix typos in docs</title>
<updated>2016-01-25T08:33:14+00:00</updated>
<author>
<name>Dongjoon Hyun</name>
<email>dongjoon@apache.org</email>
</author>
<published>2016-01-25T08:33:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=df9df7f7e8340f9389543a4389022c07dbaf2e0d'/>
<id>df9df7f7e8340f9389543a4389022c07dbaf2e0d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Update the 1.11.0 release notes.</title>
<updated>2016-01-23T20:38:09+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-20T18:27:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=b8d61d4348b6907fed545d020c9f5631dfafc6e0'/>
<id>b8d61d4348b6907fed545d020c9f5631dfafc6e0</id>
<content type='text'>
[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>REL: Update master branch after 1.12.x branch has been made.</title>
<updated>2016-01-20T02:53:20+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-20T02:53:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=11a9b710481f5932835c1c0cb1e5e2747be8cde0'/>
<id>11a9b710481f5932835c1c0cb1e5e2747be8cde0</id>
<content type='text'>
* Drop testing of Python 2.6, 3.2, and 3.3
* Create 1.12.0-notes.rst and add to source/documentation.
* Update pavement.py to use 1.10.x as LOG_START
* Update version numpy in setup.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Drop testing of Python 2.6, 3.2, and 3.3
* Create 1.12.0-notes.rst and add to source/documentation.
* Update pavement.py to use 1.10.x as LOG_START
* Update version numpy in setup.py
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Update the 1.10.0 release notes.</title>
<updated>2016-01-19T16:40:43+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-18T19:23:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d99acf9d561fbe535eccf344160c6e698d9ab6bb'/>
<id>d99acf9d561fbe535eccf344160c6e698d9ab6bb</id>
<content type='text'>
Rewrite the documentation of added functionality of the deg parameter of
the polynomial fitting functions in the numpy.polynomial package and put
it in the 'New Features' section.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rewrite the documentation of added functionality of the deg parameter of
the polynomial fitting functions in the numpy.polynomial package and put
it in the 'New Features' section.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add release note for polynomial fit deg changes</title>
<updated>2016-01-18T14:30:49+00:00</updated>
<author>
<name>Jonathan Underwood</name>
<email>jonathan.underwood@gmail.com</email>
</author>
<published>2016-01-18T14:30:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=082e1a8e690f304d1ce5b73aa03d179a25cdf3c6'/>
<id>082e1a8e690f304d1ce5b73aa03d179a25cdf3c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: memcpy-based ~4x faster, typed shuffle.</title>
<updated>2016-01-17T04:24:25+00:00</updated>
<author>
<name>Antony Lee</name>
<email>anntzer.lee@gmail.com</email>
</author>
<published>2015-12-06T04:46:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=5be93a2580a232705e897984d0f920bc6346990e'/>
<id>5be93a2580a232705e897984d0f920bc6346990e</id>
<content type='text'>
Only for 1d-ndarrays exactly, as subtypes (e.g. masked arrays) may not
allow direct shuffle of the underlying buffer (in fact, the old
implementation destroyed the underlying values of masked arrays while
shuffling).

Also handles struct-containing-object 1d ndarrays properly.

See #6776 for an earlier, less general (but even faster: ~6x)
improvement attempt, #5514 for the original issue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only for 1d-ndarrays exactly, as subtypes (e.g. masked arrays) may not
allow direct shuffle of the underlying buffer (in fact, the old
implementation destroyed the underlying values of masked arrays while
shuffling).

Also handles struct-containing-object 1d ndarrays properly.

See #6776 for an earlier, less general (but even faster: ~6x)
improvement attempt, #5514 for the original issue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #6453 from shoyer/naive-datetime64</title>
<updated>2016-01-17T04:02:14+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-17T04:02:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=865c3e375a598e5a0f7d9e690eda4702de8658af'/>
<id>865c3e375a598e5a0f7d9e690eda4702de8658af</id>
<content type='text'>
API: Make datetime64 timezone naive</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
API: Make datetime64 timezone naive</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #7040 from rgommers/fix-runtests-setuptools</title>
<updated>2016-01-17T01:23:05+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-17T01:23:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=ad4b5b03470a4ca2ef3150faa721a0e239b3c203'/>
<id>ad4b5b03470a4ca2ef3150faa721a0e239b3c203</id>
<content type='text'>
BLD: fix runtests.py, was broken by the move to setuptools.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BLD: fix runtests.py, was broken by the move to setuptools.</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: document changes to assert_warns</title>
<updated>2016-01-17T00:35:28+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@gmail.com</email>
</author>
<published>2016-01-17T00:35:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=da98bbc030c272edb1a8548a458b3957e29ce346'/>
<id>da98bbc030c272edb1a8548a458b3957e29ce346</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: add build system changes to 1.11.0 release notes.</title>
<updated>2016-01-17T00:33:02+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2016-01-17T00:32:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=c4c4178c7c9e34c9a86992c649469d52447f28b9'/>
<id>c4c4178c7c9e34c9a86992c649469d52447f28b9</id>
<content type='text'>
[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ci skip]
</pre>
</div>
</content>
</entry>
</feed>
