From a6181e4454b28e510452f4614394b2e5b1c832bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 4 Jul 2026 21:11:49 +0200 Subject: [PATCH] dev-python/terminado: Enable py3.15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/terminado/terminado-0.18.1.ebuild | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/dev-python/terminado/terminado-0.18.1.ebuild b/dev-python/terminado/terminado-0.18.1.ebuild index c0149864e0b10..53365276cf8fe 100644 --- a/dev-python/terminado/terminado-0.18.1.ebuild +++ b/dev-python/terminado/terminado-0.18.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) +PYTHON_COMPAT=( python3_{12..15} ) inherit distutils-r1 pypi @@ -22,13 +22,9 @@ RDEPEND=" dev-python/ptyprocess[${PYTHON_USEDEP}] dev-python/tornado[${PYTHON_USEDEP}] " -BDEPEND=" - test? ( - dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] - dev-python/pytest-timeout[${PYTHON_USEDEP}] - ) -" +EPYTEST_PLUGINS=( pytest-timeout ) +EPYTEST_RERUNS=5 distutils_enable_tests pytest src_test() { @@ -37,8 +33,3 @@ src_test() { local -x INPUTRC="${T}"/inputrc distutils-r1_src_test } - -python_test() { - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -p timeout -p rerunfailures --reruns=3 -}