mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-04 14:43:51 -09:00
Although pydantic-core likely implements a subset of the functionality
in pydantic 1.10.8 as we currently package, there will not be any
conflict as the modules namespace differ:
import pydantic # 1.10.8
import pydantic_core
So, we can add pydantic-core, then bump pydantic; we don't need to do
both in the same commit.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[yann.morin.1998@free.fr: add explanations from James about no-conflict]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
9 lines
287 B
Plaintext
9 lines
287 B
Plaintext
config BR2_PACKAGE_PYTHON_PYDANTIC_CORE
|
|
bool "python-pydantic-core"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
|
|
help
|
|
Core validation logic for pydantic written in rust.
|
|
|
|
https://github.com/pydantic/pydantic-core
|