ports/textproc/py-python-lsp-server/files/patch-pyproject.toml
Rainer Hurling 6547563938 textproc/py-python-lsp-server: Update to 1.11.0
- Remove the rope_rename plugin. People that were using it need to
      install the pylsp-rope third-party plugin instead
    - Add support for Pylint 3.1

    Reported by:    portscout, Repology
2024-04-18 22:11:00 +02:00

52 lines
1.4 KiB
TOML

--- pyproject.toml.orig 2024-03-29 15:39:29 UTC
+++ pyproject.toml
@@ -27,29 +27,29 @@ all = [
[project.optional-dependencies]
all = [
- "autopep8>=2.0.4,<2.1.0",
- "flake8>=7,<8",
- "mccabe>=0.7.0,<0.8.0",
- "pycodestyle>=2.11.0,<2.12.0",
- "pydocstyle>=6.3.0,<6.4.0",
- "pyflakes>=3.2.0,<3.3.0",
- "pylint>=3.1,<4",
- "rope>=1.11.0",
- "yapf>=0.33.0",
- "whatthepatch>=1.0.2,<2.0.0"
+ "autopep8>=2.0.4",
+ "flake8>=7",
+ "mccabe>=0.7.0",
+ "pycodestyle>=2.11.0",
+ "pydocstyle>=6.3.0",
+ "pyflakes>=3.2.0",
+ "pylint>=3.1",
+ "rope>=1.7.0",
+ "yapf>=0.32.0",
+ "whatthepatch>=1.0.2"
]
-autopep8 = ["autopep8>=2.0.4,<2.1.0"]
-flake8 = ["flake8>=7,<8"]
-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.2.0,<3.3.0"]
-pylint = ["pylint>=3.1,<4"]
-rope = ["rope>=1.11.0"]
-yapf = ["yapf>=0.33.0", "whatthepatch>=1.0.2,<2.0.0"]
+autopep8 = ["autopep8>=2.0.4"]
+flake8 = ["flake8>=7"]
+mccabe = ["mccabe>=0.7.0"]
+pycodestyle = ["pycodestyle>=2.11.0"]
+pydocstyle = ["pydocstyle>=6.3.0"]
+pyflakes = ["pyflakes>=3.2.0"]
+pylint = ["pylint>=3.1"]
+rope = ["rope>=1.7.0"]
+yapf = ["yapf>=0.32.0", "whatthepatch>=1.0.2"]
websockets = ["websockets>=10.3"]
test = [
- "pylint>=3.1,<4",
+ "pylint>=3.1",
"pytest",
"pytest-cov",
"coverage",