Skip to content

Commit 2c3470c

Browse files
authored
Add support for flake8 version 5 (#257)
1 parent d3f97f7 commit 2c3470c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ Homepage = "https://github.com/python-lsp/python-lsp-server"
2727
[project.optional-dependencies]
2828
all = [
2929
"autopep8>=1.6.0,<1.7.0",
30-
"flake8>=4.0.0,<4.1.0",
31-
"mccabe>=0.6.0,<0.7.0",
32-
"pycodestyle>=2.8.0,<2.9.0",
30+
"flake8>=5.0.0,<5.1.0",
31+
"mccabe>=0.7.0,<0.8.0",
32+
"pycodestyle>=2.9.0,<2.10.0",
3333
"pydocstyle>=2.0.0",
34-
"pyflakes>=2.4.0,<2.5.0",
34+
"pyflakes>=2.5.0,<2.6.0",
3535
"pylint>=2.5.0",
3636
"rope>=0.10.5",
3737
"yapf",
3838
"whatthepatch"
3939
]
4040
autopep8 = ["autopep8>=1.6.0,<1.7.0"]
41-
flake8 = ["flake8>=4.0.0,<4.1.0"]
42-
mccabe = ["mccabe>=0.6.0,<0.7.0"]
43-
pycodestyle = ["pycodestyle>=2.8.0,<2.9.0"]
41+
flake8 = ["flake8>=5.0.0,<5.1.0"]
42+
mccabe = ["mccabe>=0.7.0,<0.8.0"]
43+
pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"]
4444
pydocstyle = ["pydocstyle>=2.0.0"]
45-
pyflakes = ["pyflakes>=2.4.0,<2.5.0"]
45+
pyflakes = ["pyflakes>=2.5.0,<2.6.0"]
4646
pylint = ["pylint>=2.5.0"]
4747
rope = ["rope>0.10.5"]
4848
yapf = ["yapf", "whatthepatch>=1.0.2,<2.0.0"]

0 commit comments

Comments
 (0)