summaryrefslogtreecommitdiff
path: root/numpy/tests/test_numpy_version.py
Commit message (Collapse)AuthorAgeFilesLines
* 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.