summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-02-16 17:15:02 +0100
committerMichał Górny <mgorny@gentoo.org>2025-02-16 19:44:22 +0100
commit5150111e1a90ea52a84c31ff337d640d2e2cce03 (patch)
treef0b00405af688fcda0a0f9adecaeb2f4e444c64c /dev-python
parentce25dc84efc7a199a0b7a5c9ad282fde89cc1fff (diff)
downloadgentoo-5150111e1a90ea52a84c31ff337d640d2e2cce03.tar.gz
gentoo-5150111e1a90ea52a84c31ff337d640d2e2cce03.tar.bz2
gentoo-5150111e1a90ea52a84c31ff337d640d2e2cce03.zip
dev-python/aiohttp: Enable pypy3.11
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/aiohttp/aiohttp-3.11.12.ebuild4
1 files 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 19febab426306..2c0d281aa7536 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