dev-python/six: Enable python3_13t

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2024-10-11 16:41:44 +02:00
parent 7fc0251396
commit 2907ea84ca

View File

@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} pypy3 )
PYTHON_COMPAT=( python3_{10..13} python3_13t pypy3 )
inherit distutils-r1 pypi
@@ -22,14 +22,14 @@ distutils_enable_sphinx documentation --no-autodoc
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=()
local EPYTEST_DESELECT=(
# requires USE=gdb on CPython, no point in forcing the dep
# also missing on PyPy
'test_six.py::test_move_items[dbm_ndbm]'
)
case ${EPYTHON} in
pypy3)
EPYTEST_DESELECT+=(
'test_six.py::test_move_items[dbm_ndbm]'
)
;;
python3.13)
python3.13*)
EPYTEST_DESELECT+=(
'test_six.py::test_move_items[tkinter_tix]'
)