summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test__version.py
Commit message (Collapse)AuthorAgeFilesLines
* ENH: support major version larger than 9 in numpy.lib.NumpyVersionKenichi Maehashi2021-06-101-1/+1
|
* 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: Update test__version.py.Charles Harris2015-09-231-0/+13
| | | | | | | Added tests for the x.x.dev0+1234567 form together with alpha and beta versions of same. Updates lifted from scipy.
* ENH: Add the scipy NumpyVersion class.Charles Harris2014-05-151-0/+57
The class is in numpy/lib/_version.py and can be used to compare numpy versions when the version goes to double digits.