From e2b5e58c7fb298dc2e2aa72716bfac88c11b6cfc Mon Sep 17 00:00:00 2001 From: Ben Greiner Date: Fri, 5 Jan 2024 19:40:25 +0100 Subject: [PATCH] Bump flake8 to v7 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index be764e4b..1cf64ebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,22 +28,22 @@ Homepage = "https://github.com/python-lsp/python-lsp-server" [project.optional-dependencies] all = [ "autopep8>=2.0.4,<2.1.0", - "flake8>=6.1.0,<7", + "flake8>=7,<8", "mccabe>=0.7.0,<0.8.0", "pycodestyle>=2.11.0,<2.12.0", "pydocstyle>=6.3.0,<6.4.0", - "pyflakes>=3.1.0,<3.2.0", + "pyflakes>=3.2.0,<3.3.0", "pylint>=2.5.0,<3.1", "rope>=1.11.0", "yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0" ] autopep8 = ["autopep8>=1.6.0,<2.1.0"] -flake8 = ["flake8>=6.1.0,<7"] +flake8 = ["flake8>=7,<8"] mccabe = ["mccabe>=0.7.0,<0.8.0"] pycodestyle = ["pycodestyle>=2.11.0,<2.12.0"] pydocstyle = ["pydocstyle>=6.3.0,<6.4.0"] -pyflakes = ["pyflakes>=3.1.0,<3.2.0"] +pyflakes = ["pyflakes>=3.2.0,<3.3.0"] pylint = ["pylint>=2.5.0,<3.1"] rope = ["rope>=1.11.0"] yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0"]