-
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
Make RedisModel compatible with Pydantic 2.x #626
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i have the exact same problem. this fix works for me 👍
aredis_om/model/model.py
Outdated
@@ -32,7 +32,7 @@ | |||
from ulid import ULID | |||
|
|||
from .. import redis | |||
from .._compat import BaseModel | |||
from .._compat import PYDANTIC_V2, BaseModel, ConfigDict |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to move this import statement, it will break if pydantic v2 isn't present since it's conditionally exporting it in _compat
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@slorello89 Updated. Please have a look again. Thanks!
@slorello89 Can you have a look at this? Thanks! |
Looking forward for this pull request to be merged ! 👀 |
@slorello89 Any chance you can have a look at this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
LGTM 👍 thanks for submitting @arareko |
Can we get a new version on pypi with these changes? @slorello89 |
This updates
RedisModel
to usemodel_config
with the right parameters (e.g.from_attributes
) instead of theConfig
class with deprecated attributes (e.g.orm_mode
) when Pydantic 2.x is installed. It will most likely resolve the warning shown in #612, but not the main issue reported there.I found the above warning while running a FastAPI app in uvicorn within a Python 3.12 virtualenv and the following packages:
This also fixes a few warnings/issues I encountered while testing my changes with
make format/lint/test
.