dev-python/six: Sync with Gentoo

It's from Gentoo commit 2907ea84cac6d42e236b2040c27663911ce7986e.
This commit is contained in:
Flatcar Buildbot 2024-10-21 07:05:52 +00:00
parent 9d10a704ac
commit 269d9058b4

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]'
)