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
Oktober 2025 marks the end of life of Python 3.9 (see).
If we stop supporting python39 at this point it would mean that annotations like int | float no longer need an from __future__ import annotations fix at the top of the file. These should then thus be removed.
Furthermore, type aliases can use TypeAlias from the typing library and should be updated accordingly.
The text was updated successfully, but these errors were encountered:
Oktober 2025 marks the end of life of Python 3.9 (see).
If we stop supporting python39 at this point it would mean that annotations like
int | float
no longer need an from__future__ import annotations
fix at the top of the file. These should then thus be removed.Furthermore, type aliases can use
TypeAlias
from thetyping
library and should be updated accordingly.The text was updated successfully, but these errors were encountered: