From 149a8bf29b5d96a2c7787f038b3660fb709eff5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Mon, 21 Apr 2025 15:40:54 -0700 Subject: [PATCH] TST: adding new python version to the fail list --- tests/test_doctestplus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_doctestplus.py b/tests/test_doctestplus.py index 63a5572..fbe793c 100644 --- a/tests/test_doctestplus.py +++ b/tests/test_doctestplus.py @@ -1210,7 +1210,7 @@ def f(): @pytest.mark.xfail( - python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.12.3'), + python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.11.12', '3.12.3'), reason='broken by https://github.com/python/cpython/pull/115440') def test_ufunc(testdir): pytest.importorskip('numpy')