1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

textproc/py-python-lsp-server: Update 1.10.0

- Add support for notebook document completions
- Add support for flake8 version 7

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

Reported by:	Repology
This commit is contained in:
Rainer Hurling 2024-01-23 19:13:47 +01:00
parent e579653562
commit 4dc08fa866
3 changed files with 18 additions and 16 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= python-lsp-server
PORTVERSION= 1.9.0
PORTVERSION= 1.10.0
CATEGORIES= textproc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1699349437
SHA256 (python-lsp-server-1.9.0.tar.gz) = dc0c8298f0222fd66a52aa3170f3a5c8fe3021007a02098bb72f7fd8df353d13
SIZE (python-lsp-server-1.9.0.tar.gz) = 111176
TIMESTAMP = 1706028860
SHA256 (python-lsp-server-1.10.0.tar.gz) = 0c9a52dcc16cd0562404d529d50a03372db1ea6fb8dfcc3792b3265441c814f4
SIZE (python-lsp-server-1.10.0.tar.gz) = 112917

View File

@ -1,16 +1,19 @@
--- pyproject.toml.orig 2023-11-06 16:21:32 UTC
--- pyproject.toml.orig 2024-01-21 15:55:09 UTC
+++ pyproject.toml
@@ -27,29 +27,29 @@ all = [
[project.optional-dependencies]
all = [
- "autopep8>=2.0.4,<2.1.0",
- "flake8>=6.1.0,<7",
- "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.1.0,<3.2.0",
- "pyflakes>=3.2.0,<3.3.0",
- "pylint>=2.5.0,<3.1",
- "rope>=1.11.0",
- "yapf>=0.33.0",
- "whatthepatch>=1.0.2,<2.0.0"
+ "autopep8>=2.0.4",
+ "flake8>=6.1.0",
+ "mccabe>=0.7.0",
@ -18,28 +21,27 @@
+ "pydocstyle>=6.3.0",
+ "pyflakes>=3.1.0",
+ "pylint>=2.5.0",
"rope>1.2.0",
- "yapf>=0.33.0",
- "whatthepatch>=1.0.2,<2.0.0"
+ "rope>=1.7.0",
+ "yapf>=0.32.0",
+ "whatthepatch>=1.0.2"
]
-autopep8 = ["autopep8>=1.6.0,<2.1.0"]
-flake8 = ["flake8>=6.1.0,<7"]
-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.1.0,<3.2.0"]
-pyflakes = ["pyflakes>=3.2.0,<3.3.0"]
-pylint = ["pylint>=2.5.0,<3.1"]
+autopep8 = ["autopep8>=1.6.0"]
-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"]
+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"]
+rope = ["rope>=1.7.0"]
+yapf = ["yapf>=0.32.0", "whatthepatch>=1.0.2"]
websockets = ["websockets>=10.3"]
test = [