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
Python 3.7 has reached end of life, which is our current pyproject.toml required python version. Python 3.8 and 3.10 introduced some useful features around type annotations, such as TypedDicts that would be useful for our library users, especially with service calls that make user of extensive **kwargs like the updated search service in #1610.
A PR that resolves this will update the minimum supported version of python in the following places.
configs
CI/CD
Docs
Set up the necessary dependencies and configs to make use of type annotations for our library's API,
Annotate **kwarg heavy APIs with TypeDicts
The text was updated successfully, but these errors were encountered:
Python 3.7 has reached end of life, which is our current pyproject.toml required python version. Python 3.8 and 3.10 introduced some useful features around type annotations, such as TypedDicts that would be useful for our library users, especially with service calls that make user of extensive **kwargs like the updated search service in #1610.
A PR that resolves this will update the minimum supported version of python in the following places.
**kwarg
heavy APIs withTypeDicts
The text was updated successfully, but these errors were encountered: