Skip to content

Commit

Permalink
Skip Sphinx tests if on Python 3.10.
Browse files Browse the repository at this point in the history
It's not currently compatible, but should be in the next bug fix.
  • Loading branch information
QuLogic committed Aug 20, 2021
1 parent 974466f commit 7aa119f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/matplotlib/tests/test_sphinxext.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
import pytest


pytest.importorskip('sphinx')
pytest.importorskip('sphinx',
minversion=None if sys.version_info < (3, 10) else '4.1.3')


def test_tinypages(tmpdir):
Expand Down

0 comments on commit 7aa119f

Please sign in to comment.