commit: 2907ea84cac6d42e236b2040c27663911ce7986e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 11 14:41:44 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 12:39:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2907ea84
dev-python/six: Enable python3_13t
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/six/six-1.16.0-r1.ebuild | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/dev-python/six/six-1.16.0-r1.ebuild
b/dev-python/six/six-1.16.0-r1.ebuild
index 4554e1d0fd4a..d7f93534815a 100644
--- a/dev-python/six/six-1.16.0-r1.ebuild
+++ b/dev-python/six/six-1.16.0-r1.ebuild
@@ -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]'
)