From f978a4803a53ebda622e9b64942b19280e425624 Mon Sep 17 00:00:00 2001 From: qoijjj <129108030+qoijjj@users.noreply.github.com> Date: Sat, 19 Oct 2024 13:15:51 -0700 Subject: [PATCH] fix: allow any pydantic version from 2.8.2 to 3.0.0 (exclusive) for F41 compat (#266) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d2cd612..ec9a701 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ yafti = "yafti.__main__:app" [tool.poetry.dependencies] python = "^3.11" -pydantic = "2.8.2" +pydantic = "^2.8.2" pygobject = "^3.42.2" pyyaml = "^6.0" gbulb = "^0.6.4"