Merge pull request #15112 from fossilet/upstream_main

Fix sphinx.add_lexer.
This commit is contained in:
Óscar San José 2023-12-19 21:28:24 +01:00 коммит произвёл GitHub
Родитель 06544e989e 795668ddaf
Коммит b55c299533
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -49,10 +49,13 @@ highlight_language = "none"
import os
import sys
import sphinx as sphinx_mod
def setup(sphinx):
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from qllexer import QLLexer
sphinx.add_lexer("ql", QLLexer())
sphinx.add_lexer("ql", QLLexer() if sphinx_mod.version_info[0] <= 3 else QLLexer)
# The version of CodeQL for the current release you're documenting, acts as replacement for
# |version| and |release|. Not currently used.