dev-python/regex: disable pypy3

It's unsupported upstream and on x86 at least, it ends up showing up precisely
because of the UTF8-vs-ASCII strings representation problem.

(See also https://github.com/mrabarnett/mrab-regex/issues/404 where the
test issues got fixed but upstream made clear that it's unsupported and
also can't really work properly.)

Bug: https://github.com/mrabarnett/mrab-regex/issues/404
Bug: https://github.com/mrabarnett/mrab-regex/issues/521
Closes: https://bugs.gentoo.org/924136
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2024-02-10 02:47:38 +00:00
parent d6e8b76474
commit 7c2cbe4c25

View File

@@ -5,7 +5,9 @@ EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} pypy3 )
# pypy isn't supported upstream because of its UTF8 representation for strings
# See https://github.com/mrabarnett/mrab-regex/issues/521#issuecomment-1936260187.
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi