summaryrefslogtreecommitdiff
path: root/numpy/lib/_version.py
Commit message (Collapse)AuthorAgeFilesLines
* DOC: fix typoKenichi Maehashi2021-06-101-1/+1
|
* ENH: support major version larger than 9 in numpy.lib.NumpyVersionKenichi Maehashi2021-06-101-1/+1
|
* BUG: Fixed a broken `NumpyVersion.__repr__` methodBas van Beek2021-05-111-1/+1
|
* MAINT: multiline regex class simplifyTyler Reddy2020-12-291-1/+1
| | | | | | * follow up to gh-18083 covering multi-line uses of `re.compile(..` and some cases for `re.match(..` with single (meta)character classes
* MAINT: Replace basestring with str.Charles Harris2020-01-231-4/+2
| | | | | | | This replaces basestring with str except in - tools/npy_tempita/ - numpy/compat/py3k.py
* 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.
* TST, DOC: enable refguide_checkTyler Reddy2018-12-141-1/+4
| | | | | | | | * ported the refguide_check module from SciPy for usage in NumPy docstring execution/ verification; added the refguide_check run to Azure Mac OS CI * adjusted NumPy docstrings such that refguide_check passes
* DOC: Fix NumpyVersion example (closes gh-10935)Stefan van der Walt2018-04-191-1/+1
|
* DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl2016-09-061-3/+3
| | | | The strings in error messages were left untouched
* STY: Make files in numpy/lib PEP8 compliant.Charles Harris2014-07-311-0/+1
| | | | The rules enforced are the same as those used for scipy.
* ENH: Add the scipy NumpyVersion class.Charles Harris2014-05-151-0/+155
The class is in numpy/lib/_version.py and can be used to compare numpy versions when the version goes to double digits.