From 632b06cc9c89d4926759427e4b56eef919f9326a Mon Sep 17 00:00:00 2001 From: pyth0n1c Date: Thu, 21 Nov 2024 12:19:20 -0800 Subject: [PATCH] Pydantic 2.10 release causes an exception to be thrown in our codebase. resolving the exception may take some time, so we pin it for now to a working version. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed1eebd9..ec8ec960 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "contentctl" -version = "4.4.6" +version = "4.4.7" description = "Splunk Content Control Tool" authors = ["STRT "] @@ -12,7 +12,7 @@ contentctl = 'contentctl.contentctl:main' [tool.poetry.dependencies] python = "^3.11,<3.13" -pydantic = "^2.8.2" +pydantic = "~2.9.2" PyYAML = "^6.0.2" requests = "~2.32.3" pycvesearch = "^1.2"