You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 3, 2023. It is now read-only.
In Python 3.11inspect.Parameter raises ValueError where a parameter name is a keyword (see python/cpython#92062).
We at least have Schema that triggers this error due to pydantic trying to create the aliases as parameters for the model signature, but there might be more too.
In Python
3.11
inspect.Parameter
raisesValueError
where a parameter name is a keyword (see python/cpython#92062).We at least have
Schema
that triggers this error due to pydantic trying to create the aliases as parameters for the model signature, but there might be more too.PR that resolves from the pydantic end is merged and available in the 1.10 pre-releases: pydantic/pydantic#4012.
I suppose we'll need a minimum 1.10 version constraint for pydantic based on the python version >=3.11
The text was updated successfully, but these errors were encountered: