commit: 36cf0ff06dfb534e727fa8c206ee413ae73f18e9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 7 02:47:19 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 7 03:15:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36cf0ff0
dev-python/pydantic: Enable py3.12 on 2.0.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pydantic/pydantic-2.0.2.ebuild | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/dev-python/pydantic/pydantic-2.0.2.ebuild
b/dev-python/pydantic/pydantic-2.0.2.ebuild
index 8603e0f0b172..834053de9dc8 100644
--- a/dev-python/pydantic/pydantic-2.0.2.ebuild
+++ b/dev-python/pydantic/pydantic-2.0.2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
@@ -40,6 +40,17 @@ python_test() {
# require pytest-examples
tests/test_docs.py
)
+ case ${EPYTHON} in
+ python3.12)
+ EPYTEST_DESELECT+=(
+
tests/test_abc.py::test_model_subclassing_abstract_base_classes_without_implementation_raises_exception
+
tests/test_computed_fields.py::test_abstractmethod_missing
+
tests/test_edge_cases.py::test_abstractmethod_missing_for_all_decorators
+
tests/test_generics.py::test_partial_specification_name
+
tests/test_model_signature.py::test_annotated_field
+ )
+ ;;
+ esac
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -p pytest_mock