Accepting request 1163514 from home:bnavigator:spyder
- Add pylsp-pr543-pylint3.1.patch gh#python-lsp/python-lsp-server#531 OBS-URL: https://build.opensuse.org/request/show/1163514 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-lsp-server?expand=0&rev=58
This commit is contained in:
parent
5f807ea904
commit
6bf6bf6166
37
pylsp-pr543-pylint3.1.patch
Normal file
37
pylsp-pr543-pylint3.1.patch
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
From fe9f359db1cc0f59e4703c69c97ed17f88916f5a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ben Greiner <code@bnavigator.de>
|
||||||
|
Date: Fri, 29 Mar 2024 11:26:58 +0100
|
||||||
|
Subject: [PATCH] Bump pylint to 3.1
|
||||||
|
|
||||||
|
---
|
||||||
|
pyproject.toml | 6 +++---
|
||||||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/pyproject.toml b/pyproject.toml
|
||||||
|
index 4665dcbe..89ffab66 100644
|
||||||
|
--- a/pyproject.toml
|
||||||
|
+++ b/pyproject.toml
|
||||||
|
@@ -33,7 +33,7 @@ all = [
|
||||||
|
"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"
|
||||||
|
@@ -44,12 +44,12 @@ 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>=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"]
|
||||||
|
websockets = ["websockets>=10.3"]
|
||||||
|
test = [
|
||||||
|
- "pylint>=2.5.0,<3.1",
|
||||||
|
+ "pylint>=3.1,<4",
|
||||||
|
"pytest",
|
||||||
|
"pytest-cov",
|
||||||
|
"coverage",
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 29 10:50:31 UTC 2024 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Add pylsp-pr543-pylint3.1.patch
|
||||||
|
gh#python-lsp/python-lsp-server#531
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Mar 16 12:52:02 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sat Mar 16 12:52:02 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -25,6 +25,8 @@ Summary: Python Language Server for the Language Server Protocol
|
|||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/python-lsp/python-lsp-server
|
URL: https://github.com/python-lsp/python-lsp-server
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/python-lsp-server/python-lsp-server-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/python-lsp-server/python-lsp-server-%{version}.tar.gz
|
||||||
|
# PATCH-FIX-UPSTREAM pylsp-pr543-pylint3.1.patch gh#python-lsp/python-lsp-server#531
|
||||||
|
Patch0: pylsp-pr543-pylint3.1.patch
|
||||||
BuildRequires: %{python_module base >= 3.8}
|
BuildRequires: %{python_module base >= 3.8}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools >= 61.2}
|
BuildRequires: %{python_module setuptools >= 61.2}
|
||||||
@ -44,7 +46,7 @@ BuildRequires: %{python_module numpy}
|
|||||||
BuildRequires: %{python_module pandas}
|
BuildRequires: %{python_module pandas}
|
||||||
BuildRequires: %{python_module pluggy}
|
BuildRequires: %{python_module pluggy}
|
||||||
BuildRequires: %{python_module pydocstyle >= 6.3.0 with %python-pydocstyle < 6.4.0}
|
BuildRequires: %{python_module pydocstyle >= 6.3.0 with %python-pydocstyle < 6.4.0}
|
||||||
BuildRequires: %{python_module pylint >= 2.5.0 with %python-pylint < 3.1}
|
BuildRequires: %{python_module pylint >= 3.1 with %python-pylint < 4}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module python-lsp-jsonrpc >= 1.1.0 with %python-python-lsp-jsonrpc < 2}
|
BuildRequires: %{python_module python-lsp-jsonrpc >= 1.1.0 with %python-python-lsp-jsonrpc < 2}
|
||||||
BuildRequires: %{python_module rope >= 1.2.0}
|
BuildRequires: %{python_module rope >= 1.2.0}
|
||||||
@ -65,8 +67,8 @@ Suggests: python-autopep8 >= 2.0.4
|
|||||||
Conflicts: python-autopep8 >= 2.1.0
|
Conflicts: python-autopep8 >= 2.1.0
|
||||||
Suggests: python-pydocstyle >= 6.3.0
|
Suggests: python-pydocstyle >= 6.3.0
|
||||||
Conflicts: python-pydocstyle >= 6.4.0
|
Conflicts: python-pydocstyle >= 6.4.0
|
||||||
Suggests: python-pylint >= 2.5.0
|
Suggests: python-pylint >= 3.1
|
||||||
Conflicts: python-pylint >= 3.1
|
Conflicts: python-pylint >= 4
|
||||||
Suggests: python-rope >= 1.2.0
|
Suggests: python-rope >= 1.2.0
|
||||||
Suggests: python-yapf >= 0.33
|
Suggests: python-yapf >= 0.33
|
||||||
Suggests: python-whatthepatch >= 1.0.2
|
Suggests: python-whatthepatch >= 1.0.2
|
||||||
|
Loading…
Reference in New Issue
Block a user