diff options
author | Seth Troisi <sethtroisi@google.com> | 2020-01-22 21:54:01 -0800 |
---|---|---|
committer | Seth Troisi <sethtroisi@google.com> | 2020-01-23 15:14:59 -0800 |
commit | 581f1664cc24290f1257484cf2ce4df296adfb20 (patch) | |
tree | fa4d333c075f40f6a6e5f9015e4255cc6b6ea629 /numpy/tests | |
parent | 2dadfe8c6158b3f4ccdac3d044a2b6b8b91397eb (diff) | |
download | numpy-581f1664cc24290f1257484cf2ce4df296adfb20.tar.gz |
DEP: deprecate importing numpy/matrixlib.py
Diffstat (limited to 'numpy/tests')
-rw-r--r-- | numpy/tests/test_matlib.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/tests/test_matlib.py b/numpy/tests/test_matlib.py index e04947a2e..0e93c4848 100644 --- a/numpy/tests/test_matlib.py +++ b/numpy/tests/test_matlib.py @@ -1,11 +1,3 @@ -# As we are testing matrices, we ignore its PendingDeprecationWarnings -try: - import pytest - pytestmark = pytest.mark.filterwarnings( - 'ignore:the matrix subclass is not:PendingDeprecationWarning') -except ImportError: - pass - import numpy as np import numpy.matlib from numpy.testing import assert_array_equal, assert_ |