From c4813a966d627577f0b2b1e9d106d5fd9c6a3d0d Mon Sep 17 00:00:00 2001 From: mattip Date: Thu, 24 May 2018 20:00:33 -0700 Subject: [PATCH] TST: skip ctypes memoryview issue on old python --- numpy/core/tests/test_multiarray.py | 1 + 1 file changed, 1 insertion(+) diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py index 3ca201eddbed..a60f2cd92769 100644 --- a/numpy/core/tests/test_multiarray.py +++ b/numpy/core/tests/test_multiarray.py @@ -6517,6 +6517,7 @@ def test_max_dims(self): a = np.empty((1,) * 32) self._check_roundtrip(a) + @pytest.mark.skipif(sys.version_info < (2, 7, 7), reason="See gh-11115") def test_error_too_many_dims(self): def make_ctype(shape, scalar_type): t = scalar_type