Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-python-language-server for
openSUSE:Factory checked in at 2021-04-21 20:59:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-language-server (Old)
and /work/SRC/openSUSE:Factory/.python-python-language-server.new.12324
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-python-language-server"
Wed Apr 21 20:59:54 2021 rev:19 rq:886923 version:0.36.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-python-language-server/python-python-language-server.changes
2021-04-17 23:25:04.905605977 +0200
+++
/work/SRC/openSUSE:Factory/.python-python-language-server.new.12324/python-python-language-server.changes
2021-04-21 21:00:14.818281440 +0200
@@ -1,0 +2,7 @@
+Mon Apr 19 17:52:11 UTC 2021 - Ben Greiner <[email protected]>
+
+- Add pyls-openSUSE-unpin-extras.patch -- unpin extras_requires,
+ because entrypoints requiring pyls[all] now check the
+ requirements in the egg-info/requires.txt
+
+-------------------------------------------------------------------
New:
----
pyls-openSUSE-unpin-extras.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-python-language-server.spec ++++++
--- /var/tmp/diff_new_pack.fZKlAq/_old 2021-04-21 21:00:15.398282354 +0200
+++ /var/tmp/diff_new_pack.fZKlAq/_new 2021-04-21 21:00:15.406282366 +0200
@@ -33,6 +33,9 @@
Patch2: test_numpy_hover_fix.patch
# PATCH-FIX-UPSTREAM test_py39-code_folding.patch -- gh#python-ls/python-ls#9
Patch3: test_py39-code_folding.patch
+# PATCH-FIX-OPENSUSE pyls-openSUSE-unpin-extras.patch -- unpin extras_requires,
+# because entrypoints requiring pyls[all] now check the requirements in the
egg-info/requires.txt
+Patch4: pyls-openSUSE-unpin-extras.patch
BuildRequires: %{python_module jedi >= 0.17.2}
BuildRequires: %{python_module pluggy}
BuildRequires: %{python_module python-jsonrpc-server >= 0.4.0}
++++++ pyls-openSUSE-unpin-extras.patch ++++++
Index: python-language-server-0.36.2/setup.py
===================================================================
--- python-language-server-0.36.2.orig/setup.py
+++ python-language-server-0.36.2/setup.py
@@ -52,10 +52,10 @@ setup(
'all': [
'autopep8',
'flake8>=3.8.0',
- 'mccabe>=0.6.0,<0.7.0',
- 'pycodestyle>=2.6.0,<2.7.0',
+ 'mccabe>=0.6.0',
+ 'pycodestyle>=2.6.0',
'pydocstyle>=2.0.0',
- 'pyflakes>=2.2.0,<2.3.0',
+ 'pyflakes>=2.2.0',
# pylint >= 2.5.0 is required for working through stdin and only
# available with python3
'pylint>=2.5.0' if sys.version_info.major >= 3 else 'pylint',
@@ -64,10 +64,10 @@ setup(
],
'autopep8': ['autopep8'],
'flake8': ['flake8>=3.8.0'],
- 'mccabe': ['mccabe>=0.6.0,<0.7.0'],
- 'pycodestyle': ['pycodestyle>=2.6.0,<2.7.0'],
+ 'mccabe': ['mccabe>=0.6.0'],
+ 'pycodestyle': ['pycodestyle>=2.6.0'],
'pydocstyle': ['pydocstyle>=2.0.0'],
- 'pyflakes': ['pyflakes>=2.2.0,<2.3.0'],
+ 'pyflakes': ['pyflakes>=2.2.0'],
'pylint': [
'pylint>=2.5.0' if sys.version_info.major >= 3 else 'pylint'],
'rope': ['rope>0.10.5'],