diff options
author | Rainer Hurling <rhurlin@FreeBSD.org> | 2022-12-05 18:22:34 +0100 |
---|---|---|
committer | Rainer Hurling <rhurlin@FreeBSD.org> | 2022-12-05 18:29:35 +0100 |
commit | 2a929d082d18841fec71e5d5a9471bc563a2ae38 (patch) | |
tree | d21cbc33dadd7f70474a830d9ad15968c1a81162 /textproc/py-python-lsp-server/files | |
parent | databases/db5: Add <stddef.h> to conftest.cpp for TLS check (diff) |
textproc/py-python-lsp-server: Relax restrictions
Lower restrictions for version numbers of dependents. Hopefully without
restrictions, even during operation.
PR: 268161
Reported by: p5B2EA84B3@t-online.de
Diffstat (limited to 'textproc/py-python-lsp-server/files')
-rw-r--r-- | textproc/py-python-lsp-server/files/patch-pyproject.toml | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/textproc/py-python-lsp-server/files/patch-pyproject.toml b/textproc/py-python-lsp-server/files/patch-pyproject.toml index 886cbf02d299..cf78fdf65305 100644 --- a/textproc/py-python-lsp-server/files/patch-pyproject.toml +++ b/textproc/py-python-lsp-server/files/patch-pyproject.toml @@ -1,20 +1,30 @@ --- pyproject.toml.orig 2022-11-02 23:27:35 UTC +++ pyproject.toml -@@ -27,7 +27,7 @@ all = [ +@@ -27,10 +27,10 @@ all = [ [project.optional-dependencies] all = [ - "autopep8>=1.6.0,<1.7.0", +- "flake8>=5.0.0,<5.1.0", + "autopep8>=1.6.0", - "flake8>=5.0.0,<5.1.0", ++ "flake8>=5.0.0", "mccabe>=0.7.0,<0.8.0", - "pycodestyle>=2.9.0,<2.10.0", -@@ -38,7 +38,7 @@ all = [ +- "pycodestyle>=2.9.0,<2.10.0", ++ "pycodestyle>=2.9.0", + "pydocstyle>=2.0.0", + "pyflakes>=2.5.0,<2.6.0", + "pylint>=2.5.0", +@@ -38,10 +38,10 @@ all = [ "yapf", "whatthepatch" ] -autopep8 = ["autopep8>=1.6.0,<1.7.0"] +-flake8 = ["flake8>=5.0.0,<5.1.0"] +autopep8 = ["autopep8>=1.6.0"] - flake8 = ["flake8>=5.0.0,<5.1.0"] ++flake8 = ["flake8>=5.0.0"] mccabe = ["mccabe>=0.7.0,<0.8.0"] - pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"] +-pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"] ++pycodestyle = ["pycodestyle>=2.9.0"] + pydocstyle = ["pydocstyle>=2.0.0"] + pyflakes = ["pyflakes>=2.5.0,<2.6.0"] + pylint = ["pylint>=2.5.0"] |