Skip to content

Commit

Permalink
textproc/py-python-lsp-server: Relax restrictions
Browse files Browse the repository at this point in the history
Lower restrictions for version numbers of dependents. Hopefully without
restrictions, even during operation.

PR:		268161
Reported by:	p5B2EA84B3@t-online.de
  • Loading branch information
rhurlin committed Dec 5, 2022
1 parent 42cfe5c commit 2a929d0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
1 change: 1 addition & 0 deletions textproc/py-python-lsp-server/Makefile
@@ -1,5 +1,6 @@
PORTNAME= python-lsp-server
PORTVERSION= 1.6.0
PORTREVISION= 1
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand Down
22 changes: 16 additions & 6 deletions textproc/py-python-lsp-server/files/patch-pyproject.toml
@@ -1,20 +1,30 @@
--- pyproject.toml.orig 2022-11-02 23:27:35 UTC
+++ pyproject.toml
@@ -27,7 +27,7 @@ all = [
@@ -27,10 +27,10 @@ all = [

[project.optional-dependencies]
all = [
- "autopep8>=1.6.0,<1.7.0",
- "flake8>=5.0.0,<5.1.0",
+ "autopep8>=1.6.0",
"flake8>=5.0.0,<5.1.0",
+ "flake8>=5.0.0",
"mccabe>=0.7.0,<0.8.0",
"pycodestyle>=2.9.0,<2.10.0",
@@ -38,7 +38,7 @@ all = [
- "pycodestyle>=2.9.0,<2.10.0",
+ "pycodestyle>=2.9.0",
"pydocstyle>=2.0.0",
"pyflakes>=2.5.0,<2.6.0",
"pylint>=2.5.0",
@@ -38,10 +38,10 @@ all = [
"yapf",
"whatthepatch"
]
-autopep8 = ["autopep8>=1.6.0,<1.7.0"]
-flake8 = ["flake8>=5.0.0,<5.1.0"]
+autopep8 = ["autopep8>=1.6.0"]
flake8 = ["flake8>=5.0.0,<5.1.0"]
+flake8 = ["flake8>=5.0.0"]
mccabe = ["mccabe>=0.7.0,<0.8.0"]
pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"]
-pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"]
+pycodestyle = ["pycodestyle>=2.9.0"]
pydocstyle = ["pydocstyle>=2.0.0"]
pyflakes = ["pyflakes>=2.5.0,<2.6.0"]
pylint = ["pylint>=2.5.0"]

0 comments on commit 2a929d0

Please sign in to comment.