diff options
author | 2024-05-25 11:11:05 +0200 | |
---|---|---|
committer | 2024-05-25 11:28:37 +0200 | |
commit | 7398236404f82fce8297420a084d7c68c781b467 (patch) | |
tree | 7cab865e5480d2a65c3f9264aa6bb8a3dd6d0983 /dev-python | |
parent | dev-python/snowballstemmer: Enable py3.13 (diff) | |
download | gentoo-7398236404f82fce8297420a084d7c68c781b467.tar.gz gentoo-7398236404f82fce8297420a084d7c68c781b467.tar.bz2 gentoo-7398236404f82fce8297420a084d7c68c781b467.zip |
dev-python/sphinx: Enable py3.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/sphinx/sphinx-7.3.7-r2.ebuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dev-python/sphinx/sphinx-7.3.7-r2.ebuild b/dev-python/sphinx/sphinx-7.3.7-r2.ebuild index 99ff0e4980f7..036665b3e9fa 100644 --- a/dev-python/sphinx/sphinx-7.3.7-r2.ebuild +++ b/dev-python/sphinx/sphinx-7.3.7-r2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{10..12} pypy3 ) +PYTHON_COMPAT=( python3_{10..13} pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 @@ -98,6 +98,15 @@ python_test() { local EPYTEST_DESELECT=() case ${EPYTHON} in + python3.13) + EPYTEST_DESELECT+=( + tests/test_extensions/test_ext_autodoc.py::test_autodoc_special_members + tests/test_extensions/test_ext_autodoc_configs.py::test_autodoc_type_aliases + tests/test_extensions/test_ext_autodoc_configs.py::test_autodoc_typehints_format_fully_qualified + tests/test_extensions/test_ext_autodoc_configs.py::test_autodoc_typehints_none + tests/test_extensions/test_ext_autodoc_configs.py::test_autodoc_typehints_signature + ) + ;; pypy3) EPYTEST_DESELECT+=( tests/test_extensions/test_ext_autodoc.py::test_autodoc_exception |