From b16ef8122500006e0d1a35ca1ab3d4afc5f377bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Andr=C3=A9s=20Margffoy=20Tuay?= Date: Thu, 22 Apr 2021 11:59:07 -0500 Subject: [PATCH 1/2] Pin pycodestyle version to 2.7.0 --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b5037a11..d1546adb 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,8 @@ def get_version(module='pylsp'): 'jedi>=0.17.2,<0.19.0', 'python-lsp-jsonrpc>=1.0.0', 'pluggy', - 'ujson>=3.0.0' + 'ujson>=3.0.0', + 'setuptools>=39.0.0' ] setup( @@ -48,7 +49,7 @@ def get_version(module='pylsp'): 'autopep8', 'flake8>=3.8.0', 'mccabe>=0.6.0,<0.7.0', - 'pycodestyle>=2.6.0,<2.7.0', + 'pycodestyle>=2.7.0', 'pydocstyle>=2.0.0', 'pyflakes>=2.2.0,<2.3.0', 'pylint>=2.5.0', @@ -58,7 +59,7 @@ def get_version(module='pylsp'): 'autopep8': ['autopep8'], 'flake8': ['flake8>=3.8.0'], 'mccabe': ['mccabe>=0.6.0,<0.7.0'], - 'pycodestyle': ['pycodestyle>=2.6.0,<2.7.0'], + 'pycodestyle': ['pycodestyle>=2.7.0'], 'pydocstyle': ['pydocstyle>=2.0.0'], 'pyflakes': ['pyflakes>=2.2.0,<2.3.0'], 'pylint': ['pylint>=2.5.0'], From ec72c6a46772383723fd8768084cdbbc6f1b00c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Andr=C3=A9s=20Margffoy=20Tuay?= Date: Thu, 22 Apr 2021 12:08:01 -0500 Subject: [PATCH 2/2] Update pyflakes version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d1546adb..a5aa7f07 100755 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def get_version(module='pylsp'): 'mccabe>=0.6.0,<0.7.0', 'pycodestyle>=2.7.0', 'pydocstyle>=2.0.0', - 'pyflakes>=2.2.0,<2.3.0', + 'pyflakes>=2.3.0,<2.4.0', 'pylint>=2.5.0', 'rope>=0.10.5', 'yapf', @@ -61,7 +61,7 @@ def get_version(module='pylsp'): 'mccabe': ['mccabe>=0.6.0,<0.7.0'], 'pycodestyle': ['pycodestyle>=2.7.0'], 'pydocstyle': ['pydocstyle>=2.0.0'], - 'pyflakes': ['pyflakes>=2.2.0,<2.3.0'], + 'pyflakes': ['pyflakes>=2.3.0,<2.4.0'], 'pylint': ['pylint>=2.5.0'], 'rope': ['rope>0.10.5'], 'yapf': ['yapf'],