commit: 95778ff89e5d4b6613c67c553a8b5c36c80f4662
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 4 15:31:43 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 4 15:35:00 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95778ff8
dev-python/pooch: Enable py3.14
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
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 776199d6bfb9..dbdafdc10509 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"
}