Skip to content

Commit

Permalink
textproc/py-python-lsp-server: Update to 1.11.0
Browse files Browse the repository at this point in the history
    - 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
  • Loading branch information
rhurlin committed Apr 18, 2024
1 parent 64bb0cf commit 6547563
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions textproc/py-python-lsp-server/Makefile
@@ -1,5 +1,5 @@
PORTNAME= python-lsp-server
PORTVERSION= 1.10.1
PORTVERSION= 1.11.0
CATEGORIES= textproc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand Down Expand Up @@ -47,7 +47,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}yapf>0:textproc/py-yapf@${PY_FLAVOR} \
${PYNUMPY}

# make test: 4 failed, 187 passed, 8 skipped, 14 warnings
# make test: 4 failed, 186 passed, 8 skipped, 10 warnings
USES= python
USE_PYTHON= autoplist concurrent pep517 pytest

Expand Down
6 changes: 3 additions & 3 deletions textproc/py-python-lsp-server/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1710697530
SHA256 (python-lsp-server-1.10.1.tar.gz) = ec4c5706af67a265a19173fe4beb3b0a2c1626fa33a15ea952c2f288798b8c0d
SIZE (python-lsp-server-1.10.1.tar.gz) = 113136
TIMESTAMP = 1711954019
SHA256 (python-lsp-server-1.11.0.tar.gz) = 89edd6fb3f7852e4bf5a3d1d95ea41484d1a28fa94b6e3cbff12b9db123b8e86
SIZE (python-lsp-server-1.11.0.tar.gz) = 113347
22 changes: 11 additions & 11 deletions textproc/py-python-lsp-server/files/patch-pyproject.toml
@@ -1,4 +1,4 @@
--- pyproject.toml.orig 2024-01-21 15:55:09 UTC
--- pyproject.toml.orig 2024-03-29 15:39:29 UTC
+++ pyproject.toml
@@ -27,29 +27,29 @@ all = [

Expand All @@ -10,17 +10,17 @@
- "pycodestyle>=2.11.0,<2.12.0",
- "pydocstyle>=6.3.0,<6.4.0",
- "pyflakes>=3.2.0,<3.3.0",
- "pylint>=2.5.0,<3.1",
- "pylint>=3.1,<4",
- "rope>=1.11.0",
- "yapf>=0.33.0",
- "whatthepatch>=1.0.2,<2.0.0"
+ "autopep8>=2.0.4",
+ "flake8>=6.1.0",
+ "flake8>=7",
+ "mccabe>=0.7.0",
+ "pycodestyle>=2.11.0",
+ "pydocstyle>=6.3.0",
+ "pyflakes>=3.1.0",
+ "pylint>=2.5.0",
+ "pyflakes>=3.2.0",
+ "pylint>=3.1",
+ "rope>=1.7.0",
+ "yapf>=0.32.0",
+ "whatthepatch>=1.0.2"
Expand All @@ -31,22 +31,22 @@
-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>=2.5.0,<3.1"]
-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>=6.1.0"]
+flake8 = ["flake8>=7"]
+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"]
+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>=2.5.0,<3.1",
+ "pylint>=2.5.0",
- "pylint>=3.1,<4",
+ "pylint>=3.1",
"pytest",
"pytest-cov",
"coverage",

0 comments on commit 6547563

Please sign in to comment.