-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow using Pydantic v2 #533
Conversation
There are lint & dependency audit errors. I'm sure the lint error is out of the scope of this PR.
I'm not sure about the audit error. Could you help me to fix the issue, please? (If this PR looks good) |
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## main #533 +/- ##
==========================================
- Coverage 78.94% 78.61% -0.33%
==========================================
Files 14 15 +1
Lines 1178 1188 +10
==========================================
+ Hits 930 934 +4
- Misses 248 254 +6
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
@ninoseki I've merged master in accordingly. |
Thanks and please let me know if I need additional works on this PR. |
given the opt in nature - and the pydantic changes.. it seems very clean. |
The latest version of FastAPI (v0.100.0) supports Pydantic v2.
I'd like to use
redis-om-python
with Pydantic v2 while keeping the compatibility.This PR does:
pydantic = ">=1.10.2,<2.1.0"
)_compat.py
file to import proper Pydantic classes, etc.from pydantic import ...
if Pydantic is v1from pydantic.v1 import ...
if Pydantic is v2 (Note: Pydantic v2 contains v1 in v1 module)It allows using Pydantic v2 along with
redis-om-python
.