diff options
Diffstat (limited to 'textproc/py-python-lsp-server/files/patch-pyproject.toml')
-rw-r--r-- | textproc/py-python-lsp-server/files/patch-pyproject.toml | 44 |
1 files changed, 26 insertions, 18 deletions
diff --git a/textproc/py-python-lsp-server/files/patch-pyproject.toml b/textproc/py-python-lsp-server/files/patch-pyproject.toml index d9e4209b1845..ff7f0f829b98 100644 --- a/textproc/py-python-lsp-server/files/patch-pyproject.toml +++ b/textproc/py-python-lsp-server/files/patch-pyproject.toml @@ -1,34 +1,42 @@ ---- pyproject.toml.orig 2022-11-02 23:27:35 UTC +--- pyproject.toml.orig 2023-01-06 23:50:19 UTC +++ pyproject.toml -@@ -27,23 +27,23 @@ all = [ +@@ -27,26 +27,26 @@ all = [ [project.optional-dependencies] all = [ - "autopep8>=1.6.0,<1.7.0", -- "flake8>=5.0.0,<5.1.0", +- "flake8>=5.0.0,<7", +- "mccabe>=0.7.0,<0.8.0", +- "pycodestyle>=2.9.0,<2.11.0", +- "pydocstyle>=6.2.0,<6.3.0", +- "pyflakes>=2.5.0,<3.1.0", + "autopep8>=1.6.0", + "flake8>=5.0.0", - "mccabe>=0.7.0,<0.8.0", -- "pycodestyle>=2.9.0,<2.10.0", ++ "mccabe>=0.7.0", + "pycodestyle>=2.9.0", - "pydocstyle>=2.0.0", -- "pyflakes>=2.5.0,<2.6.0", ++ "pydocstyle>=6.2.0", + "pyflakes>=2.5.0", - "pylint>=2.5.0", - "rope>=0.10.5", + "pylint>=2.5.0,<3", + "rope>1.2.0", "yapf", - "whatthepatch" + "whatthepatch>=1.0.2,<2.0.0" ] -autopep8 = ["autopep8>=1.6.0,<1.7.0"] --flake8 = ["flake8>=5.0.0,<5.1.0"] +-flake8 = ["flake8>=5.0.0,<7"] +-mccabe = ["mccabe>=0.7.0,<0.8.0"] +-pycodestyle = ["pycodestyle>=2.9.0,<2.11.0"] +-pydocstyle = ["pydocstyle>=6.2.0,<6.3.0"] +-pyflakes = ["pyflakes>=2.5.0,<3.1.0"] +autopep8 = ["autopep8>=1.6.0"] +flake8 = ["flake8>=5.0.0"] - mccabe = ["mccabe>=0.7.0,<0.8.0"] --pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"] ++mccabe = ["mccabe>=0.7.0"] +pycodestyle = ["pycodestyle>=2.9.0"] - pydocstyle = ["pydocstyle>=2.0.0"] --pyflakes = ["pyflakes>=2.5.0,<2.6.0"] ++pydocstyle = ["pydocstyle>=6.2.0"] +pyflakes = ["pyflakes>=2.5.0"] - pylint = ["pylint>=2.5.0"] - rope = ["rope>0.10.5"] - yapf = ["yapf", "whatthepatch>=1.0.2,<2.0.0"] + pylint = ["pylint>=2.5.0,<3"] + rope = ["rope>1.2.0"] +-yapf = ["yapf", "whatthepatch>=1.0.2,<2.0.0"] ++yapf = ["yapf", "whatthepatch>=1.0.2"] + websockets = ["websockets>=10.3"] + test = [ + "pylint>=2.5.0,<3", |