diff options
author | Hugo <hugovk@users.noreply.github.com> | 2020-09-02 16:43:40 +0300 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2020-09-03 13:46:30 +0300 |
commit | d09e192f05fae7d2e13735c82714b0bc140a0d9f (patch) | |
tree | 46066830aef26587dc2ed14b79db37d8187026ed /numpy/ma | |
parent | 55ffea92285dfe5b49123c57b63dcd6f00c5f3c3 (diff) | |
download | numpy-d09e192f05fae7d2e13735c82714b0bc140a0d9f.tar.gz |
MAINT: Remove old sys.version_info code
Diffstat (limited to 'numpy/ma')
-rw-r--r-- | numpy/ma/tests/test_core.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/ma/tests/test_core.py b/numpy/ma/tests/test_core.py index 27f14a5e7..0ed2971e6 100644 --- a/numpy/ma/tests/test_core.py +++ b/numpy/ma/tests/test_core.py @@ -3858,8 +3858,6 @@ class TestMaskedArrayMathMethods: assert_almost_equal(np.sqrt(mXvar0[k]), mX[:, k].compressed().std()) - @pytest.mark.skipif(sys.platform=='win32' and sys.version_info < (3, 6), - reason='Fails on Python < 3.6 on Windows, gh-9671') @suppress_copy_mask_on_assignment def test_varstd_specialcases(self): # Test a special case for var |