commit: a780b016ae2c597ba255457d3e16a2c79950dda8
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 4 18:35:58 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 4 18:37:33 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a780b016
dev-python/fritzconnection: Enable py3.14
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../fritzconnection/fritzconnection-1.15.0.ebuild | 18 ++----------------
1 file changed, 2 insertions(+), 16 deletions(-)
diff --git a/dev-python/fritzconnection/fritzconnection-1.15.0.ebuild
b/dev-python/fritzconnection/fritzconnection-1.15.0.ebuild
index 9789ec2fbb5e..7c5e812e2f40 100644
--- a/dev-python/fritzconnection/fritzconnection-1.15.0.ebuild
+++ b/dev-python/fritzconnection/fritzconnection-1.15.0.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
+PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
@@ -35,12 +35,8 @@ RDEPEND="
dev-python/segno[${PYTHON_USEDEP}]
)
"
-BDEPEND="
- test? (
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- )
-"
+EPYTEST_PLUGINS=( pytest-mock )
distutils_enable_tests pytest
python_test() {
@@ -49,16 +45,6 @@ python_test() {
fritzconnection/tests/test_fritzmonitor.py::test_terminate_thread_on_failed_reconnection
)
- if has_version "dev-python/segno[${PYTHON_USEDEP}]"; then
- EPYTEST_DESELECT+=(
- # requires "QR Code detection" support in
media-libs/opencv
- # https://bugs.gentoo.org/917121
-
fritzconnection/tests/test_fritzwlan.py::test_get_wifi_qr_code
-
fritzconnection/tests/test_fritzwlan.py::test_helper_functions
- fritzconnection/tests/test_fritzwlan.py::test_tools
- )
- fi
-
# "routertest" marks tests against live hardware
epytest -m "not routertest"
}