dev-python/jsonpickle: enable py3.14 with PYTHON_FULLY_TESTED

Allow skipping pandas and gmpy2 when porting to new impls.

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-06-09 07:12:10 +01:00
parent a2e177a845
commit 34f2b13460

View File

@@ -4,8 +4,8 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
PYTHON_FULLY_TESTED=( python3_{11..13} )
PYTHON_COMPAT=( "${PYTHON_FULLY_TESTED[@]}" python3_14 )
inherit distutils-r1 optfeature
DESCRIPTION="Python library for serializing any arbitrary object graph into JSON"
@@ -32,8 +32,10 @@ BDEPEND="
dev-python/sqlalchemy[${PYTHON_USEDEP}]
dev-python/ujson[${PYTHON_USEDEP}]
test-full? (
dev-python/gmpy2[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
dev-python/gmpy2[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
' "${PYTHON_FULLY_TESTED[@]}")
)
)
"