Diff pydantic-2.3.0 with a pydantic-2.4.0

/usr/portage/dev-python/pydantic/pydantic-2.4.0.ebuild 2023-10-09 14:52:30.336368371 +0300
16 16

  
17 17
LICENSE="MIT"
18 18
SLOT="0"
19
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sparc x86"
19
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
20 20

  
21 21
RDEPEND="
22 22
	>=dev-python/annotated-types-0.4.0[${PYTHON_USEDEP}]
23
	~dev-python/pydantic-core-2.6.3[${PYTHON_USEDEP}]
23
	=dev-python/pydantic-core-2.10*[${PYTHON_USEDEP}]
24 24
	>=dev-python/typing-extensions-4.6.1[${PYTHON_USEDEP}]
25 25
"
26 26
BDEPEND="
......
48 48
		# benchmarks
49 49
		tests/benchmarks
50 50
	)
51
	case ${EPYTHON} in
52
		python3.12)
53
			EPYTEST_DESELECT+=(
54
				tests/test_abc.py::test_model_subclassing_abstract_base_classes_without_implementation_raises_exception
55
				tests/test_computed_fields.py::test_abstractmethod_missing
56
				tests/test_edge_cases.py::test_abstractmethod_missing_for_all_decorators
57
				tests/test_generics.py::test_partial_specification_name
58
				tests/test_model_signature.py::test_annotated_field
59
			)
60
			;;
61
	esac
62 51

  
63 52
	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
64 53
	epytest -p pytest_mock
Thank you!