From a0579c46d2e670e66c6de62659f9a8945827776c Mon Sep 17 00:00:00 2001 From: Trayan Azarov Date: Sat, 25 Nov 2023 00:35:43 +0200 Subject: [PATCH] [CLN]: Removing pydantic < 2.0 upper bound in python client (#1421) Closes #1419 ## Description of changes *Summarize the changes made by this PR.* - Improvements & Bug fixes - Update pyproject.toml to allow python client to use pydantic 2.x ## Test plan *How are these changes tested?* - [x] Tests pass locally with `pytest` for python ## Documentation Changes N/A Co-authored-by: Hammad Bashir --- 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 76b930b4f70..6bb9ee06d5e 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ ] dependencies = [ 'requests >= 2.28', - 'pydantic>=1.9,<2.0', + 'pydantic>=1.9', 'numpy >= 1.22.5', 'posthog >= 2.4.0', 'typing_extensions >= 4.5.0',