dev-python/pyrsistent: Enable py3.12

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-05-27 14:21:19 +02:00
parent 49537503f9
commit 16be6d8e67

View File

@@ -5,7 +5,7 @@ EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} pypy3 )
PYTHON_COMPAT=( python3_{10..12} pypy3 )
inherit distutils-r1 pypi
@@ -26,3 +26,15 @@ BDEPEND="
"
distutils_enable_tests pytest
python_test() {
local EPYTEST_IGNORE=()
if [[ ${EPYTHON} == python3.12 ]]; then
EPYTEST_IGNORE+=(
# probably a bug in python itself or in hypothesis
tests/hypothesis_vector_test.py
)
fi
epytest
}