From 5b4cc99d583f95a68cec757eee1e780568d7b68d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 14 May 2025 10:41:32 +0200 Subject: [PATCH] dev-python/astroid: Enable py3.14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/astroid/astroid-3.3.10.ebuild | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/dev-python/astroid/astroid-3.3.10.ebuild b/dev-python/astroid/astroid-3.3.10.ebuild index f6614965a3ff5..4c39b480591df 100644 --- a/dev-python/astroid/astroid-3.3.10.ebuild +++ b/dev-python/astroid/astroid-3.3.10.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3_11 python3_{11..13} ) +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) inherit distutils-r1 @@ -76,6 +76,20 @@ python_test() { ) fi + case ${EPYTHON} in + python3.14) + EPYTEST_DESELECT+=( + tests/brain/test_brain.py::CollectionsBrain::test_collections_object_subscriptable_3 + tests/brain/test_brain.py::TypingBrain::test_has_dunder_args + tests/brain/test_brain.py::TypingBrain::test_typing_object_notsubscriptable_3 + tests/brain/test_brain.py::TypingBrain::test_typing_types + tests/brain/test_pathlib.py::test_inference_parents + tests/brain/test_pathlib.py::test_inference_parents_subscript_index + tests/test_inference.py::InferenceTest::test_binary_op_or_union_type + ) + ;; + esac + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest }