summaryrefslogtreecommitdiff
path: root/numpy/tests/test_numpy_version.py
Commit message (Collapse)AuthorAgeFilesLines
* TST fix comment of assert+indentationJérôme Kieffer2021-05-311-2/+2
|
* TST Fix typoJérôme Kieffer2021-05-311-2/+2
|
* TST: fix pylintJérôme Kieffer2021-05-311-2/+4
|
* BUG: re-introduce short-version as it wasJérôme Kieffer2021-05-311-0/+8
|
* BUG: Fix test_numpy_version.Charles Harris2021-05-231-4/+21
| | | | | | - 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.
* ENH: Use versioneer to manage numpy versions.Charles Harris2020-12-081-1/+1
| | | | | | | | | | | | 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.
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
| | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
* MAINT: Remove all uses of run_module_suite.Charles Harris2018-04-061-5/+1
| | | | | That function is nose specific and has not worked since `__init__` files were added to the tests directories.
* TST: fix issues with test for correctness of numpy version string.Ralf Gommers2016-01-161-4/+4
| | | | Addresses comments of @pv on gh-6895.
* TST: add test to check for correct version string format.Ralf Gommers2016-01-161-0/+23
Implements idea suggested in gh-6431.