This PR is decreases the pinned pydantic version from "pydantic>=2.5.2" to "pydantic>=1.10.14" to remain compatible with the other repos. model_dump() was changed to dict(), which is deprecated and will be removed by pydantic v3. field_validator was changed to validator, and is also deprecated and scheduled to be removed by v3 of pydantic.
This PR is decreases the pinned pydantic version from
"pydantic>=2.5.2"
to"pydantic>=1.10.14"
to remain compatible with the other repos.model_dump()
was changed todict()
, which is deprecated and will be removed by pydantic v3.field_validator
was changed tovalidator
, and is also deprecated and scheduled to be removed by v3 of pydantic.