-
-
Notifications
You must be signed in to change notification settings - Fork 723
Add support for Python 3.12 - 3.14 #3090
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
Conversation
| select = E,F,W,C | ||
| copyright-regexp=Copyright \(c\) Facebook, Inc. and its affiliates. All Rights Reserved | ||
| ignore=W503,E203,E231,E701,E704 | ||
| ignore=W503,E203,E231,E241,E701,E704 |
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.
Why ignore E241?
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.
I was hitting commit-blocking false positives on some literal string patterns. Black would already reformat any code that would have actually violated this
…strophically failing
fbd76f9 to
71c6ea2
Compare
Stacked on top of #3089
The majority of changes are trivial test updates. An additional hack is needed to continue to support
LazyCompletionHelp-- temporarily disablingargparse.ArgumentParser._check_help-- but this is pretty benign and we add a test to ensure that things still work.