15
0

- update to 4.0.0:

* use ‘orjson’ or ‘ujson’ for reading if available
  * drop support for end-of-life Python versions; this package is now
    Python 3.8+ only.
  * drop support for numbers.Number in type= arguments (#63)
  * drop support for python versions older than 3.6
- Added python-jsonlines needed by python-cloudflare, which is

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonlines?expand=0&rev=8
This commit is contained in:
2023-12-08 09:48:40 +00:00
committed by Git OBS Bridge
parent 6f2d0f26fe
commit 9b875467c1
4 changed files with 19 additions and 8 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6da82d01c11d271fb4f6471ddde4a752e7bd7d58efec7ae71a39f0f874daac13
size 12658

3
4.0.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51df713e1f9b54f520f2a13fa0a9a386b8551686f964008d497c160082e1e295
size 13172

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Dec 8 09:47:50 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 4.0.0:
* use orjson or ujson for reading if available
* drop support for end-of-life Python versions; this package is now
Python 3.8+ only.
-------------------------------------------------------------------
Sat Jul 1 09:05:29 UTC 2023 - ecsos <ecsos@opensuse.org>
@@ -11,16 +19,16 @@ Thu Sep 29 14:16:46 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
* ignore UTF-8 BOM sequences in various scenarios (#69)
* support dumps() callables returning bytes again (#64)
* add basic support for rfc7464 text sequences (#61)
* drop support for numbers.Number in type= arguments (#63)
* drop support for numbers.Number in type= arguments (#63)
-------------------------------------------------------------------
Mon Nov 8 10:08:24 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 2.0.0:
* drop support for python versions older than 3.6
* drop support for python versions older than 3.6
-------------------------------------------------------------------
Wed Aug 29 11:40:44 UTC 2018 - mcalabkova@suse.com
- Added python-jsonlines needed by python-cloudflare, which is
- Added python-jsonlines needed by python-cloudflare, which is
needed by python-certbot-dns-cloudflare

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-jsonlines
#
# 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
@@ -20,18 +20,21 @@
%global skip_python2 1
%{?sle15_python_module_pythons}
Name: python-jsonlines
Version: 3.1.0
Version: 4.0.0
Release: 0
Summary: Library with helpers for the jsonlines file format
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/wbolster/jsonlines
Source: https://github.com/wbolster/jsonlines/archive/%{version}.tar.gz
BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module ujson}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
Requires: python-ujson
%python_subpackages
%description