From 822904fb49642021d4ed95e7944771235bfaaefe Mon Sep 17 00:00:00 2001 From: Ben Greiner Date: Thu, 11 Jul 2024 12:44:05 +0200 Subject: [PATCH] Bump flake8 to 7.1 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f68cc2ed..f9c6a521 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,9 +28,9 @@ Homepage = "https://github.com/python-lsp/python-lsp-server" [project.optional-dependencies] all = [ "autopep8>=2.0.4,<2.1.0", - "flake8>=7,<8", + "flake8>=7.1,<8", "mccabe>=0.7.0,<0.8.0", - "pycodestyle>=2.11.0,<2.12.0", + "pycodestyle>=2.12.0,<2.13.0", "pydocstyle>=6.3.0,<6.4.0", "pyflakes>=3.2.0,<3.3.0", "pylint>=3.1,<4", @@ -39,9 +39,9 @@ all = [ "whatthepatch>=1.0.2,<2.0.0" ] autopep8 = ["autopep8>=2.0.4,<2.1.0"] -flake8 = ["flake8>=7,<8"] +flake8 = ["flake8>=7.1,<8"] mccabe = ["mccabe>=0.7.0,<0.8.0"] -pycodestyle = ["pycodestyle>=2.11.0,<2.12.0"] +pycodestyle = ["pycodestyle>=2.12.0,<2.13.0"] pydocstyle = ["pydocstyle>=6.3.0,<6.4.0"] pyflakes = ["pyflakes>=3.2.0,<3.3.0"] pylint = ["pylint>=3.1,<4"]