From eb717de377cc0956a89e10745454f4978ddb7403 Mon Sep 17 00:00:00 2001 From: Niall Dooley Date: Fri, 19 Jan 2024 17:05:25 +0100 Subject: [PATCH] Fix optional dependency version This ensures the same version of autopep8 is installed whether the user passes "python-lsp-server[all]" or "python-lsp-server[autopep8]" to pip. Resolves: #513 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index be764e4b..d7966adc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ all = [ "yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0" ] -autopep8 = ["autopep8>=1.6.0,<2.1.0"] +autopep8 = ["autopep8>=2.0.4,<2.1.0"] flake8 = ["flake8>=6.1.0,<7"] mccabe = ["mccabe>=0.7.0,<0.8.0"] pycodestyle = ["pycodestyle>=2.11.0,<2.12.0"]