From 95778ff89e5d4b6613c67c553a8b5c36c80f4662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 4 Oct 2025 17:31:43 +0200 Subject: [PATCH] dev-python/pooch: Enable py3.14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pooch/pooch-1.8.2.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/pooch/pooch-1.8.2.ebuild b/dev-python/pooch/pooch-1.8.2.ebuild index 776199d6bfb91..dbdafdc10509e 100644 --- a/dev-python/pooch/pooch-1.8.2.ebuild +++ b/dev-python/pooch/pooch-1.8.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} ) +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) inherit distutils-r1 pypi @@ -28,7 +28,6 @@ BDEPEND=" dev-python/setuptools-scm[${PYTHON_USEDEP}] test? ( >=dev-python/paramiko-2.7.0[${PYTHON_USEDEP}] - dev-python/pytest-httpserver[${PYTHON_USEDEP}] >=dev-python/tqdm-4.41.0[${PYTHON_USEDEP}] ) " @@ -50,9 +49,9 @@ EPYTEST_DESELECT=( ### docs no included in pypi tarball # distutils_enable_sphinx doc \ # dev-python/sphinx-rtd-theme +EPYTEST_PLUGINS=( pytest-httpserver ) distutils_enable_tests pytest python_test() { - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -p pytest_httpserver -k "not network" + epytest -k "not network" }