Merge pull request #1974 from PyCQA/update-plugins

update versions of pycodestyle / pyflakes
This commit is contained in:
Anthony Sottile 2025-03-29 15:46:35 -04:00 committed by GitHub
commit ebad305769
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -29,8 +29,8 @@ classifiers =
packages = find:
install_requires =
mccabe>=0.7.0,<0.8.0
pycodestyle>=2.12.0,<2.13.0
pyflakes>=3.2.0,<3.3.0
pycodestyle>=2.13.0,<2.14.0
pyflakes>=3.3.0,<3.4.0
python_requires = >=3.9
package_dir =
=src

View file

@ -55,6 +55,7 @@ FLAKE8_PYFLAKES_CODES = {
"UndefinedName": "F821",
"UndefinedExport": "F822",
"UndefinedLocal": "F823",
"UnusedIndirectAssignment": "F824",
"DuplicateArgument": "F831",
"UnusedVariable": "F841",
"UnusedAnnotation": "F842",