From e2e49b793bd42d6dc5f45f8b83bd205175c13610 Mon Sep 17 00:00:00 2001 From: hammadb Date: Wed, 23 Aug 2023 22:05:11 -0700 Subject: [PATCH] Add dep fix for pydantic in thin client --- clients/python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index 73623598f10..3afff14f4be 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ ] dependencies = [ 'requests >= 2.28', - 'pydantic >= 1.9', + 'pydantic>=1.9,<2.0', 'numpy >= 1.21.6', 'posthog >= 2.4.0', 'typing_extensions >= 4.5.0',