Skip to content

Commit

Permalink
Enable test_cython on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Sep 13, 2023
1 parent 22759fb commit 3d0110a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_ext_autodoc.py
Expand Up @@ -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):
Expand Down

0 comments on commit 3d0110a

Please sign in to comment.