From 3d0110a95a5260cc5056322eb8c2ae7f031a6667 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Wed, 13 Sep 2023 02:58:01 +0100 Subject: [PATCH] Enable test_cython on Python 3.12 --- tests/test_ext_autodoc.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index 02869b8bee2..7062763e1d4 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -2103,9 +2103,8 @@ def test_singledispatchmethod_automethod(app): ] -@pytest.mark.skipif(sys.version_info[:2] >= (3, 11), - reason=('cython does not support python-3.11 yet. ' - 'see https://github.com/cython/cython/issues/4365')) +@pytest.mark.skipif(sys.version_info[:2] >= (3, 13), + reason='Cython does not support Python 3.13 yet.') @pytest.mark.skipif(pyximport is None, reason='cython is not installed') @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_cython(app):