Skip to content

Commit 43104e9

Browse files
authored
Add support for pyflakes 3.1 and pycodestyle 2.11 (#415)
1 parent f47867a commit 43104e9

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

pylsp/plugins/pyflakes_lint.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
messages.YieldOutsideFunction,
1616
messages.ContinueOutsideLoop,
1717
messages.BreakOutsideLoop,
18-
messages.ContinueInFinally,
1918
messages.TwoStarredExpressions,
2019
)
2120

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ Homepage = "https://github.com/python-lsp/python-lsp-server"
2828
[project.optional-dependencies]
2929
all = [
3030
"autopep8>=1.6.0,<2.1.0",
31-
"flake8>=5.0.0,<7",
31+
"flake8>=6.1.0,<7",
3232
"mccabe>=0.7.0,<0.8.0",
33-
"pycodestyle>=2.9.0,<2.11.0",
33+
"pycodestyle>=2.11.0,<2.12.0",
3434
"pydocstyle>=6.3.0,<6.4.0",
35-
"pyflakes>=2.5.0,<3.1.0",
35+
"pyflakes>=3.1.0,<3.2.0",
3636
"pylint>=2.5.0,<3",
3737
"rope>1.2.0",
3838
"yapf>=0.33.0",
3939
"whatthepatch>=1.0.2,<2.0.0"
4040
]
4141
autopep8 = ["autopep8>=1.6.0,<2.1.0"]
42-
flake8 = ["flake8>=5.0.0,<7"]
42+
flake8 = ["flake8>=6.1.0,<7"]
4343
mccabe = ["mccabe>=0.7.0,<0.8.0"]
44-
pycodestyle = ["pycodestyle>=2.9.0,<2.11.0"]
44+
pycodestyle = ["pycodestyle>=2.11.0,<2.12.0"]
4545
pydocstyle = ["pydocstyle>=6.3.0,<6.4.0"]
46-
pyflakes = ["pyflakes>=2.5.0,<3.1.0"]
46+
pyflakes = ["pyflakes>=3.1.0,<3.2.0"]
4747
pylint = ["pylint>=2.5.0,<3"]
4848
rope = ["rope>1.2.0"]
4949
yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0"]

0 commit comments

Comments
 (0)