From e1266138675b10f7186a21d30a27a2e2ce3ba821 Mon Sep 17 00:00:00 2001 From: Isaac To Date: Tue, 26 Nov 2024 23:01:28 -0800 Subject: [PATCH] fix: pin pydantic dependency to <2.10 Need for wait for the support for Pydantic 2.10 to be added. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 381ef9b4..5898827d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ classifiers = [ ] dependencies = [ "linkml @ git+https://github.com/candleindark/linkml.git@bundle-error", - "pydantic~=2.7", + "pydantic>=2.7,<2.10", "typer", ]