Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-python-lsp-server for
openSUSE:Factory checked in at 2024-04-02 16:40:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-lsp-server (Old)
and /work/SRC/openSUSE:Factory/.python-python-lsp-server.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-python-lsp-server"
Tue Apr 2 16:40:18 2024 rev:32 rq:1163540 version:1.10.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-python-lsp-server/python-python-lsp-server.changes
2024-03-17 22:15:26.607154610 +0100
+++
/work/SRC/openSUSE:Factory/.python-python-lsp-server.new.1905/python-python-lsp-server.changes
2024-04-02 16:40:32.749103722 +0200
@@ -1,0 +2,6 @@
+Fri Mar 29 10:50:31 UTC 2024 - Ben Greiner <[email protected]>
+
+- Add pylsp-pr543-pylint3.1.patch
+ gh#python-lsp/python-lsp-server#531
+
+-------------------------------------------------------------------
New:
----
pylsp-pr543-pylint3.1.patch
BETA DEBUG BEGIN:
New:
- Add pylsp-pr543-pylint3.1.patch
gh#python-lsp/python-lsp-server#531
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-python-lsp-server.spec ++++++
--- /var/tmp/diff_new_pack.13Z79j/_old 2024-04-02 16:40:33.373126718 +0200
+++ /var/tmp/diff_new_pack.13Z79j/_new 2024-04-02 16:40:33.377126866 +0200
@@ -25,6 +25,8 @@
License: MIT
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
+# 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 pip}
BuildRequires: %{python_module setuptools >= 61.2}
@@ -44,7 +46,7 @@
BuildRequires: %{python_module pandas}
BuildRequires: %{python_module pluggy}
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 python-lsp-jsonrpc >= 1.1.0 with
%python-python-lsp-jsonrpc < 2}
BuildRequires: %{python_module rope >= 1.2.0}
@@ -65,8 +67,8 @@
Conflicts: python-autopep8 >= 2.1.0
Suggests: python-pydocstyle >= 6.3.0
Conflicts: python-pydocstyle >= 6.4.0
-Suggests: python-pylint >= 2.5.0
-Conflicts: python-pylint >= 3.1
+Suggests: python-pylint >= 3.1
+Conflicts: python-pylint >= 4
Suggests: python-rope >= 1.2.0
Suggests: python-yapf >= 0.33
Suggests: python-whatthepatch >= 1.0.2
++++++ pylsp-pr543-pylint3.1.patch ++++++
>From fe9f359db1cc0f59e4703c69c97ed17f88916f5a Mon Sep 17 00:00:00 2001
From: Ben Greiner <[email protected]>
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",