diff options
author | Rainer Hurling <rhurlin@FreeBSD.org> | 2023-03-24 11:35:17 +0100 |
---|---|---|
committer | Rainer Hurling <rhurlin@FreeBSD.org> | 2023-03-24 11:41:01 +0100 |
commit | 2e30b7de00f398f5e636bb3ca3586fe3172bcad5 (patch) | |
tree | e7a439c676ca9d49abb1d7735263bf68df1933e4 /textproc/py-python-lsp-server/files/patch-pyproject.toml | |
parent | mail/nextcloud-mail: Update to 3.0.2 (diff) |
textproc/py-python-lsp-server: Update to 1.7.1
Releases v1.7.0 and v1.7.1 with the following new features and changes:
- Add a new plugin to provide autoimport functionality (disabled by default)
- Add progress reporting
- Make jedi_definition plugin follow definitions to pyi files
- Add support for flake8 version 6
- Add support for Yapf ignore patterns
- Add mccabe setting to flake8 plugin
- Fixes an error with the Pydocstyle 6.2.0+
- Includes missing Pylint "information" category
- Improves Jedi file completions for directories
The port changes from distutils to pep517 and again removes some version limitations of dependencies.
Changelog: https://github.com/python-lsp/python-lsp-server/releases/tag/v1.7.0
https://github.com/python-lsp/python-lsp-server/releases/tag/v1.7.1
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", |