textproc/py-python-lsp-server: Loose version of dependency

Allow older version of dependency yapf to make devel/spyder work:

pkg_resources.ContextualVersionConflict: (yapf 0.32.0 (/usr/local/lib/python3.9/site-packages), Requirement.parse('yapf>=0.33.0; extra == "all"'), {'python-lsp-server'})

MFH:		2023Q2
This commit is contained in:
Rainer Hurling 2023-05-23 20:38:08 +02:00
parent 10896145b5
commit 789a78c323
2 changed files with 4 additions and 2 deletions

View file

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

View file

@ -19,7 +19,8 @@
+ "pyflakes>=2.5.0",
+ "pylint>=2.5.0",
"rope>1.2.0",
"yapf>=0.33.0",
- "yapf>=0.33.0",
+ "yapf>=0.32.0",
"whatthepatch>=1.0.2,<2.0.0"
]
-autopep8 = ["autopep8>=1.6.0,<2.1.0"]
@ -38,7 +39,7 @@
+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"]
+yapf = ["yapf>=0.32.0", "whatthepatch>=1.0.2"]
websockets = ["websockets>=10.3"]
test = [
- "pylint>=2.5.0,<3",