commit: 5150111e1a90ea52a84c31ff337d640d2e2cce03
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 16 16:15:02 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 16 18:44:22 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5150111e
dev-python/aiohttp: Enable pypy3.11
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/aiohttp/aiohttp-3.11.12.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/aiohttp/aiohttp-3.11.12.ebuild
b/dev-python/aiohttp/aiohttp-3.11.12.ebuild
index 19febab42630..2c0d281aa753 100644
--- a/dev-python/aiohttp/aiohttp-3.11.12.ebuild
+++ b/dev-python/aiohttp/aiohttp-3.11.12.ebuild
@@ -5,7 +5,7 @@ EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 )
inherit distutils-r1 pypi
@@ -123,7 +123,7 @@ python_test() {
# upstream unconditionally blocks building C extensions
# on PyPy3 but the test suite needs an explicit switch
- if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
+ if [[ ${EPYTHON} == pypy3* ]] || ! use native-extensions; then
local -x AIOHTTP_NO_EXTENSIONS=1
fi