-
-
Notifications
You must be signed in to change notification settings - Fork 717
💚 Fix linting in CI #1340
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
💚 Fix linting in CI #1340
Changes from all commits
8fda409
902f3a1
c8b6dec
54dbce5
07f3269
b23a457
dbd8551
2e8be82
6147c7d
c8dadd5
16bef83
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -477,7 +477,7 @@ def Relationship( | |
class SQLModelMetaclass(ModelMetaclass, DeclarativeMeta): | ||
__sqlmodel_relationships__: Dict[str, RelationshipInfo] | ||
model_config: SQLModelConfig | ||
model_fields: Dict[str, FieldInfo] # type: ignore[assignment] | ||
model_fields: ClassVar[Dict[str, FieldInfo]] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As the idea is that this should now be only in the class and not instances, I think it's good to type it right away. It won't affect at runtime if people are using it, but will start warning them in their linters, so they can start preparing for this change in Pydantic v3. |
||
__config__: Type[SQLModelConfig] | ||
__fields__: Dict[str, ModelField] # type: ignore[assignment] | ||
|
||
|
@@ -839,7 +839,7 @@ def __tablename__(cls) -> str: | |
return cls.__name__.lower() | ||
|
||
@classmethod | ||
def model_validate( | ||
def model_validate( # type: ignore[override] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I changed this to not use Seeing this, I realize it was probably not the best idea to include the extra Also, it's probably not needed for most use cases, maybe it would make sense to remove those docs, explain how to extend data to validate an object using just dicts, then deprecate using it, and finally at some point dropping the But anyway, for now, it probably works to just |
||
cls: Type[_TSQLModel], | ||
obj: Any, | ||
*, | ||
|
@@ -863,20 +863,25 @@ def model_dump( | |
mode: Union[Literal["json", "python"], str] = "python", | ||
include: Union[IncEx, None] = None, | ||
exclude: Union[IncEx, None] = None, | ||
context: Union[Dict[str, Any], None] = None, | ||
by_alias: bool = False, | ||
context: Union[Any, None] = None, | ||
by_alias: Union[bool, None] = None, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like to keep the signature as close to the latest Pydantic, and then do the extra work internally to support the older versions, but this way people can get used to the new syntax and/or use it if they can already upgrade to the latest version. |
||
exclude_unset: bool = False, | ||
exclude_defaults: bool = False, | ||
exclude_none: bool = False, | ||
round_trip: bool = False, | ||
warnings: Union[bool, Literal["none", "warn", "error"]] = True, | ||
fallback: Union[Callable[[Any], Any], None] = None, | ||
serialize_as_any: bool = False, | ||
) -> Dict[str, Any]: | ||
if PYDANTIC_MINOR_VERSION < (2, 11): | ||
by_alias = by_alias or False | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With this we can handle older Pydantic versions but keep the most recent signature. |
||
if PYDANTIC_MINOR_VERSION >= (2, 7): | ||
extra_kwargs: Dict[str, Any] = { | ||
"context": context, | ||
"serialize_as_any": serialize_as_any, | ||
} | ||
if PYDANTIC_MINOR_VERSION >= (2, 11): | ||
extra_kwargs["fallback"] = fallback | ||
else: | ||
extra_kwargs = {} | ||
if IS_PYDANTIC_V2: | ||
|
@@ -896,7 +901,7 @@ def model_dump( | |
return super().dict( | ||
include=include, | ||
exclude=exclude, | ||
by_alias=by_alias, | ||
by_alias=by_alias or False, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With this trick, we avoid the type when |
||
exclude_unset=exclude_unset, | ||
exclude_defaults=exclude_defaults, | ||
exclude_none=exclude_none, | ||
|
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 was checking the error from Pydantic and I saw that they will deprecate accessing the
model_fields
from the instance in Pydantic v3, they should be accessed from the class (which makes sense).I updated this logic here to handle that future use case. In a subsequent PR we can refactor the internal usage of this function to only pass the class and not the instance.