diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2020-05-04 19:04:20 -0400 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2020-05-04 19:07:27 -0400 |
commit | e95fcba32f123dc3ea6e23f533fedf5aee64815e (patch) | |
tree | c2e7750ebb1950373fb14a41ed36eeacf41bbd21 /numpy/tests/test_public_api.py | |
parent | 30bf46c0538266ade0ac0e1a18486a226196b738 (diff) | |
download | numpy-e95fcba32f123dc3ea6e23f533fedf5aee64815e.tar.gz |
DEP: Deprecate `numpy.dual`.
Add a deprecation warning in the `numpy.dual` module, and
remove the use of `numpy.dual` from the few places where it
is used in the numpy code.
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index fb7ec5d83..7ce74bc43 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -154,7 +154,6 @@ PUBLIC_MODULES = ['numpy.' + s for s in [ "doc.structured_arrays", "doc.subclassing", "doc.ufuncs", - "dual", "f2py", "fft", "lib", @@ -258,6 +257,7 @@ PRIVATE_BUT_PRESENT_MODULES = ['numpy.' + s for s in [ "distutils.numpy_distribution", "distutils.pathccompiler", "distutils.unixccompiler", + "dual", "f2py.auxfuncs", "f2py.capi_maps", "f2py.cb_rules", |