freebsd-ports/textproc/py-python-lsp-server/files/patch-pyproject.toml
Rainer Hurling fdc40c8b6b textproc/py-python-lsp-server: Update to 1.8.0
Major release with the following new features and changes:

- Add support for notebooks and make go-to-definition work for them.
- Add support for Pyflakes 3.1, Pycodestyle 2.11 and Jedi 0.19.
- Drop support for Python 3.7.

Changelog: https://github.com/python-lsp/python-lsp-server/blob/develop/CHANGELOG.md#version-180-20230908

Reported by:	portscout, Repology
2023-09-11 07:51:19 +02:00

49 lines
1.3 KiB
TOML

--- pyproject.toml.orig 2023-09-10 10:22:10 UTC
+++ pyproject.toml
@@ -27,29 +27,29 @@ all = [
[project.optional-dependencies]
all = [
- "autopep8>=1.6.0,<2.1.0",
- "flake8>=6.1.0,<7",
- "mccabe>=0.7.0,<0.8.0",
- "pycodestyle>=2.11.0,<2.12.0",
- "pydocstyle>=6.3.0,<6.4.0",
- "pyflakes>=3.1.0,<3.2.0",
- "pylint>=2.5.0,<3",
+ "autopep8>=1.6.0",
+ "flake8>=6.1.0",
+ "mccabe>=0.7.0",
+ "pycodestyle>=2.11.0",
+ "pydocstyle>=6.3.0",
+ "pyflakes>=3.1.0",
+ "pylint>=2.5.0",
"rope>1.2.0",
- "yapf>=0.33.0",
+ "yapf>=0.32.0",
"whatthepatch>=1.0.2,<2.0.0"
]
-autopep8 = ["autopep8>=1.6.0,<2.1.0"]
-flake8 = ["flake8>=6.1.0,<7"]
-mccabe = ["mccabe>=0.7.0,<0.8.0"]
-pycodestyle = ["pycodestyle>=2.11.0,<2.12.0"]
-pydocstyle = ["pydocstyle>=6.3.0,<6.4.0"]
-pyflakes = ["pyflakes>=3.1.0,<3.2.0"]
-pylint = ["pylint>=2.5.0,<3"]
+autopep8 = ["autopep8>=1.6.0"]
+flake8 = ["flake8>=6.1.0"]
+mccabe = ["mccabe>=0.7.0"]
+pycodestyle = ["pycodestyle>=2.11.0"]
+pydocstyle = ["pydocstyle>=6.3.0"]
+pyflakes = ["pyflakes>=3.1.0"]
+pylint = ["pylint>=2.5.0"]
rope = ["rope>1.2.0"]
-yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0"]
+yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2"]
websockets = ["websockets>=10.3"]
test = [
- "pylint>=2.5.0,<3",
+ "pylint>=2.5.0",
"pytest",
"pytest-cov",
"coverage",