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>
16 lines
661 B
Makefile
16 lines
661 B
Makefile
################################################################################
|
|
#
|
|
# python-pydantic-core
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYDANTIC_CORE_VERSION = 2.14.5
|
|
PYTHON_PYDANTIC_CORE_SOURCE = pydantic_core-$(PYTHON_PYDANTIC_CORE_VERSION).tar.gz
|
|
PYTHON_PYDANTIC_CORE_SITE = https://files.pythonhosted.org/packages/64/26/cffb93fe9c6b5a91c497f37fae14a4b073ecbc47fc36a9979c7aa888b245
|
|
PYTHON_PYDANTIC_CORE_SETUP_TYPE = maturin
|
|
PYTHON_PYDANTIC_CORE_LICENSE = MIT
|
|
PYTHON_PYDANTIC_CORE_LICENSE_FILES = LICENSE
|
|
PYTHON_PYDANTIC_CORE_DEPENDENCIES = host-python-typing-extensions
|
|
|
|
$(eval $(python-package))
|