14
0

- Update to 1.1.2:

* Fix tests so they're compatible with both ujson and pure json library
  * Remove redundant wheel dep from pyproject.toml
  * Add license trove classifier
  * Drop support for Python 3.7 and 3.6
  * Allow method handlers to return json rpc errors
  * Migrate metadata from `setup.cfg` to PEP 621-compliant `pyproject.toml`
  * Use f-strings wherever possible
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-lsp-jsonrpc?expand=0&rev=3
This commit is contained in:
2023-11-01 06:14:44 +00:00
committed by Git OBS Bridge
parent 04e5ac9d50
commit f04d54462c
4 changed files with 25 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-python-lsp-jsonrpc
#
# Copyright (c) 2021 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
@@ -16,19 +16,20 @@
#
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
Name: python-python-lsp-jsonrpc
Version: 1.0.0
Version: 1.1.2
Release: 0
Summary: JSON RPC 2.0 server library
License: MIT
URL: https://github.com/python-lsp/python-lsp-jsonrpc
Source: https://files.pythonhosted.org/packages/source/p/python-lsp-jsonrpc/python-lsp-jsonrpc-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module wheel}
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
# SECTION test requirements
BuildRequires: %{python_module ujson >= 3.0.0}
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module pytest}
# /SECTION
BuildRequires: fdupes
@@ -40,15 +41,14 @@ BuildArch: noarch
A Python 3.6+ server implementation of the JSON RPC 2.0 protocol.
This library has been pulled out of the Python Language Server project.
%prep
%setup -q -n python-lsp-jsonrpc-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -60,6 +60,6 @@ rm setup.cfg
%doc README.md
%license LICENSE
%{python_sitelib}/pylsp_jsonrpc
%{python_sitelib}/python_lsp_jsonrpc-%{version}*-info
%{python_sitelib}/python_lsp_jsonrpc-%{version}.dist-info
%changelog