From d923828e4d6e84a5801f5b69f9bf7267ee9c0d3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 30 Jun 2026 20:13:33 +0200 Subject: [PATCH] dev-python/clikit: 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/clikit/clikit-0.6.2-r1.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-python/clikit/clikit-0.6.2-r1.ebuild b/dev-python/clikit/clikit-0.6.2-r1.ebuild index 7bb1ec01152df..8eb5550b0ec5e 100644 --- a/dev-python/clikit/clikit-0.6.2-r1.ebuild +++ b/dev-python/clikit/clikit-0.6.2-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 2022-2025 Gentoo Authors +# Copyright 2022-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{11..14} ) +DISTUTILS_USE_PEP517=poetry-core +PYTHON_COMPAT=( python3_{12..15} ) inherit distutils-r1 @@ -29,15 +29,13 @@ RDEPEND=" BDEPEND=" test? ( dev-python/crashtest[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] ) " +EPYTEST_PLUGINS=( pytest-mock ) distutils_enable_tests pytest python_test() { - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - local -x PYTEST_PLUGINS=pytest_mock.plugin local -x COLUMNS=80 epytest }