commit: f8438c95011d2a2148f9b685901ee929f453f183 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue May 14 17:05:31 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue May 14 17:13:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8438c95
dev-python/rich: Enable py3.13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/rich/rich-13.7.1.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/dev-python/rich/rich-13.7.1.ebuild b/dev-python/rich/rich-13.7.1.ebuild index de4ea8ee4fa4..a5c3df268492 100644 --- a/dev-python/rich/rich-13.7.1.ebuild +++ b/dev-python/rich/rich-13.7.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{10..12} pypy3 ) +PYTHON_COMPAT=( python3_{10..13} pypy3 ) inherit distutils-r1 optfeature @@ -45,6 +45,18 @@ python_test() { tests/test_inspect.py::test_inspect_integer_with_methods_python310only ) ;; + python3.13) + EPYTEST_DESELECT+=( + tests/test_inspect.py::test_inspect_builtin_function_except_python311 + tests/test_inspect.py::test_inspect_integer_with_methods_python38_and_python39 + tests/test_inspect.py::test_inspect_integer_with_methods_python310only + tests/test_inspect.py::test_inspect_integer_with_methods_python311 + tests/test_pretty.py::test_pretty_dataclass + tests/test_pretty.py::test_reference_cycle_dataclass + tests/test_pretty.py::test_max_depth_dataclass + tests/test_pretty.py::test_attrs_broken + ) + ;; esac local -x COLUMNS=80