commit: 55f4769b9c3c774c38183f80bd50abf0f1319678
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 14 16:35:45 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 16:54:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f4769b
dev-python/execnet: Enable py3.13t
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/execnet/execnet-2.1.1.ebuild | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/dev-python/execnet/execnet-2.1.1.ebuild
b/dev-python/execnet/execnet-2.1.1.ebuild
index 24aaa101f1b2..24024951426a 100644
--- a/dev-python/execnet/execnet-2.1.1.ebuild
+++ b/dev-python/execnet/execnet-2.1.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} python3_13t pypy3 )
inherit distutils-r1 pypi
@@ -27,6 +27,17 @@ distutils_enable_sphinx doc
distutils_enable_tests pytest
python_test() {
+ local EPYTEST_DESELECT=()
+
+ case ${EPYTHON} in
+ python3.13t)
+ EPYTEST_DESELECT+=(
+ #
https://github.com/pytest-dev/execnet/issues/306
+
testing/test_channel.py::TestChannelBasicBehaviour::test_channel_callback_remote_freed
+ )
+ ;;
+ esac
+
# the test suite checks if bytecode writing can be disabled/enabled
local -x PYTHONDONTWRITEBYTECODE=
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1