-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop Python 3.8 branches #13776
Drop Python 3.8 branches #13776
Conversation
I will split this PR tomorrow, unless someone beats me to it by reviewing the whole thing. |
Little sanity check: I verified that running ruff with |
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looked at the first few files, up to asyncio
@@ -52,9 +49,8 @@ class Function(SymbolTable): | |||
def get_nonlocals(self) -> tuple[str, ...]: ... | |||
|
|||
class Class(SymbolTable): | |||
if sys.version_info < (3, 16): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of scope for this PR, but I removed this check, as it's a long time to 3.16 and who knows what will happen until then.
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Final part of #12112.