commit: 4ad6d884aa871d7e7f77f95d267cd1657973d523
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 18 12:12:57 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 18 15:31:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad6d884
dev-python/mysqlclient: Enable py3.14
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/mysqlclient/mysqlclient-2.2.7.ebuild | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/dev-python/mysqlclient/mysqlclient-2.2.7.ebuild
b/dev-python/mysqlclient/mysqlclient-2.2.7.ebuild
index ab58269f3886..af1cfe875489 100644
--- a/dev-python/mysqlclient/mysqlclient-2.2.7.ebuild
+++ b/dev-python/mysqlclient/mysqlclient-2.2.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
+PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
@@ -31,6 +31,7 @@ BDEPEND="
)
"
+EPYTEST_PLUGINS=()
distutils_enable_sphinx doc \
dev-python/sphinx-rtd-theme
distutils_enable_tests pytest
@@ -81,13 +82,9 @@ src_test() {
database = test
EOF
+ local -x TESTDB="${T}/mysql.cnf"
distutils-r1_src_test
einfo "Stopping test MySQL instance ..."
pkill -F "${pidfile}" &>/dev/null
}
-
-python_test() {
- local -x TESTDB="${T}/mysql.cnf"
- epytest
-}