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
Since we drop support for python3.8 and now minimal python version is python3.9, we can migrate some library code to new python3.9 types and functions, which includes:
builtin container types now can be used in type annotations e.g. List[] -> list[]
from collections.abc import Iterable, Mapping, Sequence
maybe some types migrated from typing_extensions into typing module
Since we drop support for python3.8 and now minimal python version is python3.9, we can migrate some library code to new python3.9 types and functions, which includes:
Also review python3.9 official changelog, maybe we can use some new features https://docs.python.org/3.9/whatsnew/3.9.html
The text was updated successfully, but these errors were encountered: