mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-09 22:34:17 +00:00
Merge pull request #1974 from PyCQA/update-plugins
update versions of pycodestyle / pyflakes
This commit is contained in:
commit
ebad305769
2 changed files with 3 additions and 2 deletions
|
|
@ -29,8 +29,8 @@ classifiers =
|
||||||
packages = find:
|
packages = find:
|
||||||
install_requires =
|
install_requires =
|
||||||
mccabe>=0.7.0,<0.8.0
|
mccabe>=0.7.0,<0.8.0
|
||||||
pycodestyle>=2.12.0,<2.13.0
|
pycodestyle>=2.13.0,<2.14.0
|
||||||
pyflakes>=3.2.0,<3.3.0
|
pyflakes>=3.3.0,<3.4.0
|
||||||
python_requires = >=3.9
|
python_requires = >=3.9
|
||||||
package_dir =
|
package_dir =
|
||||||
=src
|
=src
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,7 @@ FLAKE8_PYFLAKES_CODES = {
|
||||||
"UndefinedName": "F821",
|
"UndefinedName": "F821",
|
||||||
"UndefinedExport": "F822",
|
"UndefinedExport": "F822",
|
||||||
"UndefinedLocal": "F823",
|
"UndefinedLocal": "F823",
|
||||||
|
"UnusedIndirectAssignment": "F824",
|
||||||
"DuplicateArgument": "F831",
|
"DuplicateArgument": "F831",
|
||||||
"UnusedVariable": "F841",
|
"UnusedVariable": "F841",
|
||||||
"UnusedAnnotation": "F842",
|
"UnusedAnnotation": "F842",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue