summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-10-18 11:37:05 +0200
committerMichał Górny <mgorny@gentoo.org>2025-10-18 11:53:21 +0200
commitac074befd3b5a4d48097902a20965c6f805bf7a5 (patch)
tree3b493b081a876ff205a27db0c180fb8dd16b62a6 /dev-python
parente6dd5738853e7de3cd3da5cbdacc117a41c01ee9 (diff)
downloadgentoo-ac074befd3b5a4d48097902a20965c6f805bf7a5.tar.gz
gentoo-ac074befd3b5a4d48097902a20965c6f805bf7a5.tar.bz2
gentoo-ac074befd3b5a4d48097902a20965c6f805bf7a5.zip
dev-python/google-auth: Enable py3.14
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/google-auth/google-auth-2.41.1.ebuild16
1 files changed, 8 insertions, 8 deletions
diff --git a/dev-python/google-auth/google-auth-2.41.1.ebuild b/dev-python/google-auth/google-auth-2.41.1.ebuild
index 336f3ba4550a..8d29af791098 100644
--- a/dev-python/google-auth/google-auth-2.41.1.ebuild
+++ b/dev-python/google-auth/google-auth-2.41.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
+PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
@@ -43,13 +43,6 @@ EPYTEST_PLUGINS=( pytest-{asyncio,localserver} )
EPYTEST_XDIST=1
distutils_enable_tests pytest
-src_prepare() {
- distutils-r1_src_prepare
-
- # unpin deps
- sed -i -e 's:,<[0-9.]*::' setup.py || die
-}
-
EPYTEST_DESELECT=(
# tests are broken with up-to-date pyopenssl
tests/transport/test__mtls_helper.py::TestDecryptPrivateKey::test_success
@@ -60,3 +53,10 @@ EPYTEST_IGNORE=(
# disable them to unblock removal of that package
tests/test__oauth2client.py
)
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # unpin deps
+ sed -i -e 's:,<[0-9.]*::' setup.py || die
+}