diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-02-08 10:53:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 10:53:21 -0700 |
commit | a6f55fe293502dd94eccb3799efdbaaa1d5ff1df (patch) | |
tree | 7de5a6bd467439d3c96c610b2529c2abb562b026 /numpy/compat/__init__.py | |
parent | 9d3735a6c0781585a4a6cd767f68967d3897b38b (diff) | |
parent | df8d1fd3c2077ca785b0948912162e03727ace6c (diff) | |
download | numpy-a6f55fe293502dd94eccb3799efdbaaa1d5ff1df.tar.gz |
Merge pull request #21000 from charris/replace-looseversion
MAINT: Replace LooseVersion by _pep440.
Diffstat (limited to 'numpy/compat/__init__.py')
-rw-r--r-- | numpy/compat/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/compat/__init__.py b/numpy/compat/__init__.py index afee621b8..ff04f725a 100644 --- a/numpy/compat/__init__.py +++ b/numpy/compat/__init__.py @@ -9,6 +9,7 @@ extensions, which may be included for the following reasons: """ from . import _inspect +from . import _pep440 from . import py3k from ._inspect import getargspec, formatargspec from .py3k import * |