diff options
author | 2024-05-13 16:01:08 +0200 | |
---|---|---|
committer | 2024-05-13 16:03:18 +0200 | |
commit | 82faaaa28ec97a12ab74abae30e5b1f3ffa4d277 (patch) | |
tree | a1f98638624682c152114a5a0c7eba56cea1e2eb /dev-python/immutables | |
parent | dev-python/immutables: Add a patch to control ext build via envvar (diff) | |
download | gentoo-82faaaa28ec97a12ab74abae30e5b1f3ffa4d277.tar.gz gentoo-82faaaa28ec97a12ab74abae30e5b1f3ffa4d277.tar.bz2 gentoo-82faaaa28ec97a12ab74abae30e5b1f3ffa4d277.zip |
dev-python/immutables: Enable py3.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/immutables')
-rw-r--r-- | dev-python/immutables/immutables-0.20.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dev-python/immutables/immutables-0.20.ebuild b/dev-python/immutables/immutables-0.20.ebuild index 9d290cc6d6e8..a3dda207372a 100644 --- a/dev-python/immutables/immutables-0.20.ebuild +++ b/dev-python/immutables/immutables-0.20.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{10..12} ) +PYTHON_COMPAT=( pypy3 python3_{10..13} ) inherit distutils-r1 @@ -40,6 +40,13 @@ python_compile() { # upstream controls NDEBUG explicitly use debug && local -x DEBUG_IMMUTABLES=1 local -x IMMUTABLES_EXT=$(usex native-extensions 1 0) + case ${EPYTHON} in + python3.13) + # https://github.com/MagicStack/immutables/issues/116 + IMMUTABLES_EXT=0 + ;; + esac + distutils-r1_python_compile } |