14
0

- Update to 1.12.1

* Fixes compatibility with Python 3.13 in the test suite.
  * Handles correctly a null value for ropeFolder in the Rope
    configuration.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-lsp-server?expand=0&rev=72
This commit is contained in:
2025-02-09 14:47:50 +00:00
committed by Git OBS Bridge
commit 3427d9fcfd
9 changed files with 563 additions and 0 deletions

22
unpin-autopep8.patch Normal file
View File

@@ -0,0 +1,22 @@
Index: python_lsp_server-1.12.0/pyproject.toml
===================================================================
--- python_lsp_server-1.12.0.orig/pyproject.toml
+++ python_lsp_server-1.12.0/pyproject.toml
@@ -27,7 +27,7 @@ Homepage = "https://github.com/python-ls
[project.optional-dependencies]
all = [
- "autopep8>=2.0.4,<2.1.0",
+ "autopep8>=2.0.4",
"flake8>=7.1,<8",
"mccabe>=0.7.0,<0.8.0",
"pycodestyle>=2.12.0,<2.13.0",
@@ -38,7 +38,7 @@ all = [
"yapf>=0.33.0",
"whatthepatch>=1.0.2,<2.0.0"
]
-autopep8 = ["autopep8>=2.0.4,<2.1.0"]
+autopep8 = ["autopep8>=2.0.4"]
flake8 = ["flake8>=7.1,<8"]
mccabe = ["mccabe>=0.7.0,<0.8.0"]
pycodestyle = ["pycodestyle>=2.12.0,<2.13.0"]