<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/tests/test_numpy_version.py, branch pr/19857</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>TST fix comment of assert+indentation</title>
<updated>2021-05-31T18:23:21+00:00</updated>
<author>
<name>Jérôme Kieffer</name>
<email>jerome.kieffer@terre-adelie.org</email>
</author>
<published>2021-05-31T18:23:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=abf9fe9add589166c383e2cc0674499683fcaa7c'/>
<id>abf9fe9add589166c383e2cc0674499683fcaa7c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST Fix typo</title>
<updated>2021-05-31T14:31:18+00:00</updated>
<author>
<name>Jérôme Kieffer</name>
<email>jerome.kieffer@terre-adelie.org</email>
</author>
<published>2021-05-31T14:31:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f105a323d8f40b70a7e1b383468733968badbf26'/>
<id>f105a323d8f40b70a7e1b383468733968badbf26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: fix pylint</title>
<updated>2021-05-31T14:26:45+00:00</updated>
<author>
<name>Jérôme Kieffer</name>
<email>jerome.kieffer@terre-adelie.org</email>
</author>
<published>2021-05-31T14:26:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d69325a15d17e4fc9118e41640938b36f977af47'/>
<id>d69325a15d17e4fc9118e41640938b36f977af47</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: re-introduce short-version as it was</title>
<updated>2021-05-31T14:21:10+00:00</updated>
<author>
<name>Jérôme Kieffer</name>
<email>jerome.kieffer@terre-adelie.org</email>
</author>
<published>2021-05-31T14:21:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=75495a3cdedfd2ed381744732ca1c2a274ad10db'/>
<id>75495a3cdedfd2ed381744732ca1c2a274ad10db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix test_numpy_version.</title>
<updated>2021-05-23T17:49:34+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2021-05-23T13:36:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d3d84017a230c1cc34517d19cb4fb9fc1854874d'/>
<id>d3d84017a230c1cc34517d19cb4fb9fc1854874d</id>
<content type='text'>
- Make versions of the form '1.22.0.dev0' valid for non-releases.
- Put empty match at end of groups instead of at the beginning.
- Require eol in match, do not allow trailing characters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Make versions of the form '1.22.0.dev0' valid for non-releases.
- Put empty match at end of groups instead of at the beginning.
- Require eol in match, do not allow trailing characters.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Use versioneer to manage numpy versions.</title>
<updated>2020-12-08T17:25:28+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-12-02T20:06:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=40fd17e3a2418d54284b53dbcf2ba72dbfbb58ad'/>
<id>40fd17e3a2418d54284b53dbcf2ba72dbfbb58ad</id>
<content type='text'>
The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the
number of commits since the 1.21.0 branch was started and 'aa0453721f'.
The chosen form may be specified in the 'setup.cfg' file. This PR adds
two new files 'numpy/_version.py' and 'numpy/version.py'. The latter
is kept because it is part of the public API and is actually used by
some downstream projects, but it is no longer dynamically created.

See https://github.com/python-versioneer/python-versioneer/ for more
information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the
number of commits since the 1.21.0 branch was started and 'aa0453721f'.
The chosen form may be specified in the 'setup.cfg' file. This PR adds
two new files 'numpy/_version.py' and 'numpy/version.py'. The latter
is kept because it is part of the public API and is actually used by
some downstream projects, but it is no longer dynamically created.

See https://github.com/python-versioneer/python-versioneer/ for more
information.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove unnecessary 'from __future__ import ...' statements</title>
<updated>2020-01-03T15:48:11+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-08-27T11:36:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=ed1e9659f103260a32536b4a7615393e3b1173dc'/>
<id>ed1e9659f103260a32536b4a7615393e3b1173dc</id>
<content type='text'>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove all uses of run_module_suite.</title>
<updated>2018-04-07T00:20:56+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-04-04T16:33:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=7bf0564f87511d9e7b6287b3eec0857d0d7742df'/>
<id>7bf0564f87511d9e7b6287b3eec0857d0d7742df</id>
<content type='text'>
That function is nose specific and has not worked since `__init__` files
were added to the tests directories.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That function is nose specific and has not worked since `__init__` files
were added to the tests directories.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: fix issues with test for correctness of numpy version string.</title>
<updated>2016-01-16T11:18:27+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2016-01-16T10:25:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=a003d8da113365065bb8e84e6980e7e16693f6e5'/>
<id>a003d8da113365065bb8e84e6980e7e16693f6e5</id>
<content type='text'>
Addresses comments of @pv on gh-6895.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Addresses comments of @pv on gh-6895.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: add test to check for correct version string format.</title>
<updated>2016-01-16T11:18:27+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@gmail.com</email>
</author>
<published>2015-12-29T20:50:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=08e75cad2b736cbed625ab3a831bb6f4887ca52e'/>
<id>08e75cad2b736cbed625ab3a831bb6f4887ca52e</id>
<content type='text'>
Implements idea suggested in gh-6431.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implements idea suggested in gh-6431.
</pre>
</div>
</content>
</entry>
</feed>
