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 2023-01-03 18:00:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-lsp-server (Old)
 and      /work/SRC/openSUSE:Factory/.python-python-lsp-server.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-python-lsp-server"

Tue Jan  3 18:00:32 2023 rev:18 rq:1045989 version:1.7.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-python-lsp-server/python-python-lsp-server.changes
        2022-12-20 20:21:26.738193450 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-lsp-server.new.1563/python-python-lsp-server.changes
      2023-01-03 18:00:33.489180847 +0100
@@ -1,0 +2,16 @@
+Fri Dec 30 09:46:15 UTC 2022 - Ben Greiner <c...@bnavigator.de>
+
+- Update to 1.7.0
+  * Add a new plugin to provide autoimport functionality (disabled
+    by default).
+  * Add progress reporting.
+  * Make jedi_definition plugin follow definitions to pyi files.
+  * Add support for flake8 version 6.
+  * Add support for Yapf ignore patterns.
+  * Add mccabe setting to flake8 plugin.
+- Drop python-lsp-server-pr316-flake8v6.patch upstreamed
+  * gh#python-lsp/python-lsp-server#316
+- Add python-lsp-server-pr327-sys-executable.patch
+  * gh#python-lsp/python-lsp-server#327
+
+-------------------------------------------------------------------

Old:
----
  python-lsp-server-1.6.0.tar.gz
  python-lsp-server-pr316-flake8v6.patch

New:
----
  python-lsp-server-1.7.0.tar.gz
  python-lsp-server-pr327-sys-executable.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-python-lsp-server.spec ++++++
--- /var/tmp/diff_new_pack.LdoMj0/_old  2023-01-03 18:00:33.957183505 +0100
+++ /var/tmp/diff_new_pack.LdoMj0/_new  2023-01-03 18:00:33.965183551 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-python-lsp-server
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:           python-python-lsp-server
-Version:        1.6.0
+Version:        1.7.0
 Release:        0
 Summary:        Python Language Server for the Language Server Protocol
 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 python-lsp-server-pr316-flake8v6.patch 
gh#python-lsp/python-lsp-server#316
-Patch0:         python-lsp-server-pr316-flake8v6.patch
+# PATCH-FIX-UPSTREAM python-lsp-server-pr327-sys-executable.patch 
gh#python-lsp/python-lsp-server#327
+Patch1:         python-lsp-server-pr327-sys-executable.patch
 BuildRequires:  %{python_module base >= 3.7}
 BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module setuptools >= 61.2}
@@ -47,7 +47,7 @@
 BuildRequires:  %{python_module pylint >= 2.5.0}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module python-lsp-jsonrpc >= 1.0.0}
-BuildRequires:  %{python_module rope >= 0.10.5}
+BuildRequires:  %{python_module rope >= 1.2.0}
 BuildRequires:  %{python_module ujson >= 3.0.0}
 BuildRequires:  %{python_module whatthepatch}
 BuildRequires:  %{python_module yapf}
@@ -63,7 +63,7 @@
 Conflicts:      python-autopep8 >= 1.7.0
 Suggests:       python-pydocstyle >= 2.0.0
 Suggests:       python-pylint >= 2.5.0
-Suggests:       python-rope >= 0.10.5
+Suggests:       python-rope >= 1.2.0
 Suggests:       python-yapf
 Suggests:       python-whatthepatch
 # SECTION flake8 pins
@@ -125,6 +125,6 @@
 %license LICENSE
 %python_alternative %{_bindir}/pylsp
 %{python_sitelib}/pylsp
-%{python_sitelib}/python_lsp_server-%{version}*-info
+%{python_sitelib}/python_lsp_server-%{version}.dist-info
 
 %changelog

++++++ python-lsp-server-1.6.0.tar.gz -> python-lsp-server-1.7.0.tar.gz ++++++
++++ 2936 lines of diff (skipped)

++++++ python-lsp-server-pr327-sys-executable.patch ++++++
diff --git a/pylsp/plugins/pylint_lint.py b/pylsp/plugins/pylint_lint.py
index 452f45b..222cdb8 100644
--- a/pylsp/plugins/pylint_lint.py
+++ b/pylsp/plugins/pylint_lint.py
@@ -85,7 +85,7 @@ class PylintLinter:
             return cls.last_diags[document.path]
 
         cmd = [
-            'python',
+            sys.executable,
             '-c',
             'import sys; from pylint.lint import Run; Run(sys.argv[1:])',
             '-f',

Reply via email to