diff options
author | Rainer Hurling <rhurlin@FreeBSD.org> | 2022-11-06 21:22:00 +0100 |
---|---|---|
committer | Rainer Hurling <rhurlin@FreeBSD.org> | 2022-11-06 21:26:42 +0100 |
commit | 9e6d197a4f820d58bbc4c599232f804a1bdbe544 (patch) | |
tree | 9ecfaddf6649cfa136db55644f35e45989af8d86 /textproc/py-python-lsp-server/files | |
parent | audio/x42-plugins-lv2: Broken on i386 (diff) |
textproc/py-python-lsp-server: Update to 1.6.0
Major release with the following new features and changes:
- Migrate to MarkupContent and convert docstrings to Markdown by default
- Add support for flake8 version 5
- Add function objects to Jedi completions
- Don't include class / functions objects by default in Jedi completions
Changelog: https://github.com/python-lsp/python-lsp-server/releases/tag/v1.6.0
Reported by: portscout, Repology
Diffstat (limited to 'textproc/py-python-lsp-server/files')
-rw-r--r-- | textproc/py-python-lsp-server/files/patch-pyproject.toml | 34 |
1 files changed, 9 insertions, 25 deletions
diff --git a/textproc/py-python-lsp-server/files/patch-pyproject.toml b/textproc/py-python-lsp-server/files/patch-pyproject.toml index 009b108ebab6..886cbf02d299 100644 --- a/textproc/py-python-lsp-server/files/patch-pyproject.toml +++ b/textproc/py-python-lsp-server/files/patch-pyproject.toml @@ -1,36 +1,20 @@ ---- pyproject.toml.orig 2022-06-28 16:50:47 UTC +--- pyproject.toml.orig 2022-11-02 23:27:35 UTC +++ pyproject.toml -@@ -26,23 +26,23 @@ all = [ +@@ -27,7 +27,7 @@ all = [ [project.optional-dependencies] all = [ - "autopep8>=1.6.0,<1.7.0", -- "flake8>=4.0.0,<4.1.0", -- "mccabe>=0.6.0,<0.7.0", -- "pycodestyle>=2.8.0,<2.9.0", + "autopep8>=1.6.0", -+ "flake8>=4.0.0", -+ "mccabe>=0.6.0", -+ "pycodestyle>=2.8.0", - "pydocstyle>=2.0.0", -- "pyflakes>=2.4.0,<2.5.0", -+ "pyflakes>=2.4.0", - "pylint>=2.5.0", - "rope>=0.10.5", + "flake8>=5.0.0,<5.1.0", + "mccabe>=0.7.0,<0.8.0", + "pycodestyle>=2.9.0,<2.10.0", +@@ -38,7 +38,7 @@ all = [ "yapf", "whatthepatch" ] -autopep8 = ["autopep8>=1.6.0,<1.7.0"] --flake8 = ["flake8>=4.0.0,<4.1.0"] --mccabe = ["mccabe>=0.6.0,<0.7.0"] --pycodestyle = ["pycodestyle>=2.8.0,<2.9.0"] +autopep8 = ["autopep8>=1.6.0"] -+flake8 = ["flake8>=4.0.0"] -+mccabe = ["mccabe>=0.6.0"] -+pycodestyle = ["pycodestyle>=2.8.0"] - pydocstyle = ["pydocstyle>=2.0.0"] --pyflakes = ["pyflakes>=2.4.0,<2.5.0"] -+pyflakes = ["pyflakes>=2.4.0"] - pylint = ["pylint>=2.5.0"] - rope = ["rope>0.10.5"] - yapf = ["yapf", "whatthepatch>=1.0.2,<2.0.0"] + flake8 = ["flake8>=5.0.0,<5.1.0"] + mccabe = ["mccabe>=0.7.0,<0.8.0"] + pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"] |