diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-05-14 15:34:53 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-05-15 01:13:22 -0600 |
commit | 62e4561f20ff681d321765d1083d3fde8db9a9f2 (patch) | |
tree | d20e62d4b7b17a04e298799e01feeb53450751be /numpy/lib/__init__.py | |
parent | 13b32e9d157a0ce62c0aa7d1447ad53fbb23d930 (diff) | |
download | numpy-62e4561f20ff681d321765d1083d3fde8db9a9f2.tar.gz |
ENH: Add the scipy NumpyVersion class.
The class is in numpy/lib/_version.py and can be used to compare
numpy versions when the version goes to double digits.
Diffstat (limited to 'numpy/lib/__init__.py')
-rw-r--r-- | numpy/lib/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index 73e4b2306..8c420b0c3 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -23,6 +23,7 @@ from .npyio import * from .financial import * from .arrayterator import * from .arraypad import * +from ._version import * __all__ = ['emath', 'math'] __all__ += type_check.__all__ |