diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-21 14:54:02 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-21 15:24:44 +0200 |
commit | d8b1a87e4bea9acbdfac0e41d3a02a6b14f5961e (patch) | |
tree | 1d2561df106933bd7fa1e9e7a638f98aedf8e4ed /numpy/testing/nosetester.py | |
parent | 815061c3ce9672b850147a0bc3535ebb220913e0 (diff) | |
download | numpy-d8b1a87e4bea9acbdfac0e41d3a02a6b14f5961e.tar.gz |
DEP: remove deprecate (and private) numpy.testing submodules.
Removes these files that were deprecated since 1.15.0:
- numpy/testing/decorators.py
- numpy/testing/noseclasses.py
- numpy/testing/nosetester.py
This also resolves a failure in the recently introduced tests
in `test_public_api.py` (see gh-14454). Closes gh-14566
Diffstat (limited to 'numpy/testing/nosetester.py')
-rw-r--r-- | numpy/testing/nosetester.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py deleted file mode 100644 index 2ac212eee..000000000 --- a/numpy/testing/nosetester.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -Back compatibility nosetester module. It will import the appropriate -set of tools - -""" -from __future__ import division, absolute_import, print_function - -import warnings - -# 2018-04-04, numpy 1.15.0 -warnings.warn("Importing from numpy.testing.nosetester is deprecated " - "since 1.15.0, import from numpy.testing instead.", - DeprecationWarning, stacklevel=2) - -from ._private.nosetester import * - -__all__ = ['get_package_name', 'run_module_suite', 'NoseTester', - '_numpy_tester', 'get_package_name', 'import_nose', - 'suppress_warnings'] |