diff --git a/pyproject.toml b/pyproject.toml index 8757572f6e7..23092f302dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ dependencies = [ "sphinxcontrib-serializinghtml>=1.1.5", "sphinxcontrib-qthelp", "Jinja2>=3.0", - "Pygments>=2.12", + "Pygments>=2.13", "docutils>=0.18,<0.20", "snowballstemmer>=2.0", "babel>=2.9", diff --git a/tests/test_ext_viewcode.py b/tests/test_ext_viewcode.py index 7750b8da055..6d443d1c6d7 100644 --- a/tests/test_ext_viewcode.py +++ b/tests/test_ext_viewcode.py @@ -2,6 +2,7 @@ import re +import pygments import pytest @@ -31,14 +32,24 @@ def test_viewcode(app, status, warning): result = (app.outdir / '_modules/spam/mod1.html').read_text(encoding='utf8') result = re.sub('', '', result) # filter pygments classes - assert ('
[docs]' - '@decorator\n' - 'class Class1' - '(object):\n' - ' """\n' - ' this is Class1\n' - ' """
\n') in result + if pygments.__version__ >= '2.14.0': + assert ('
[docs]' + '@decorator\n' + 'class Class1' + '(object):\n' + ' """\n' + ' this is Class1\n' + ' """
\n') in result + else: + assert ('
[docs]' + '@decorator\n' + 'class Class1' + '(object):\n' + ' """\n' + ' this is Class1\n' + ' """
\n') in result @pytest.mark.sphinx('epub', testroot='ext-viewcode') diff --git a/tests/test_intl.py b/tests/test_intl.py index efe6c9bce93..07dfe8be3f4 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -6,6 +6,7 @@ import os import re +import pygments import pytest from babel.messages import mofile, pofile from babel.messages.catalog import Catalog @@ -1104,8 +1105,11 @@ def test_additional_targets_should_not_be_translated(app): expected_expr = ("""literal""" """-""" """block\n""" - """in """ + """in""" + """ """ """list""") + if pygments.__version__ < '2.14.0': + expected_expr = expected_expr.replace(""" """, ' ') assert_count(expected_expr, result, 1) # doctest block should not be translated but be highlighted @@ -1179,8 +1183,11 @@ def test_additional_targets_should_be_translated(app): expected_expr = ("""LITERAL""" """-""" """BLOCK\n""" - """IN """ + """IN""" + """ """ """LIST""") + if pygments.__version__ < '2.14.0': + expected_expr = expected_expr.replace(""" """, ' ') assert_count(expected_expr, result, 1) # doctest block should not be translated but be highlighted