Skip to content

Commit d56d569

Browse files
committed
update versions of pycodestyle / pyflakes
1 parent a7e8f62 commit d56d569

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ classifiers =
2929
packages = find:
3030
install_requires =
3131
mccabe>=0.7.0,<0.8.0
32-
pycodestyle>=2.12.0,<2.13.0
33-
pyflakes>=3.2.0,<3.3.0
32+
pycodestyle>=2.13.0,<2.14.0
33+
pyflakes>=3.3.0,<3.4.0
3434
python_requires = >=3.9
3535
package_dir =
3636
=src

Diff for: src/flake8/plugins/pyflakes.py

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"UndefinedName": "F821",
5656
"UndefinedExport": "F822",
5757
"UndefinedLocal": "F823",
58+
"UnusedIndirectAssignment": "F824",
5859
"DuplicateArgument": "F831",
5960
"UnusedVariable": "F841",
6061
"UnusedAnnotation": "F842",

0 commit comments

Comments
 (0)