Skip to content

Commit

Permalink
[BUG] Add dep fix for pydantic in thin client (#1033)
Browse files Browse the repository at this point in the history
## Description of changes

*Summarize the changes made by this PR.*
 - Improvements & Bug fixes
- #799 introduced a max version for pydantic but this change was not
propagated to the thin client. This makes the same change in the thin
client.
 - New functionality
	 - ...

## Test plan
Existing tests for client

- [ ] Tests pass locally with `pytest` for python, `yarn test` for js

## Documentation Changes
None
  • Loading branch information
HammadB authored Aug 28, 2023
1 parent bd6250c commit fd014ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit fd014ed

Please sign in to comment.