Markéta Machová
20568c0341
* Specify build system dependency on maturin>=1,<2 again. * Allocate memory using PyMem_Malloc() and similar APIs for integration with pymalloc, mimalloc, and tracemalloc. * Source distribution does not ship compressed test documents and relevant tests skip if fixtures are not present. * Build now depends on Rust 1.82 or later instead of 1.72. - Release 3.10.13 * Fix compatibility with maturin introducing a breaking change in 1.8.0 and specify a fixed version of maturin. Projects relying on any previous version being buildable from source by end users (via PEP 517) must upgrade to at least this version. - Remove pendulum from tests: Not desired in Ring1 and not maintained upstream. It's only supported on x86_64. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-orjson?expand=0&rev=23
85 lines
2.8 KiB
RPMSpec
85 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package python-orjson
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-orjson
|
|
Version: 3.10.14
|
|
Release: 0
|
|
Summary: Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
|
|
License: Apache-2.0 OR MIT
|
|
URL: https://github.com/ijl/orjson
|
|
# Update: Change version and run `osc rm orjson-*.tar.gz && osc service runall download_files && sh ./devendor-sdist.sh && osc service runall cargo_vendor`
|
|
Source0: orjson-%{version}-devendored.tar.xz
|
|
Source1: vendor.tar.xz
|
|
Source2: https://files.pythonhosted.org/packages/source/o/orjson/orjson-%{version}.tar.gz
|
|
Source3: devendor-sdist.sh
|
|
Source4: PACKAGING_README.md
|
|
BuildRequires: %{python_module base >= 3.8}
|
|
BuildRequires: %{python_module maturin >= 1}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: cargo-packaging
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module numpy}
|
|
BuildRequires: %{python_module psutil}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module python-dateutil}
|
|
BuildRequires: %{python_module pytz}
|
|
BuildRequires: %{python_module xxhash}
|
|
BuildRequires: timezone
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
orjson is a fast JSON library for Python.
|
|
It benchmarks as the fastest Python library for JSON.
|
|
|
|
%prep
|
|
%autosetup -a1 -n orjson-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
donttest="bydefaultnothingfails"
|
|
%ifarch %ix86 %arm32
|
|
# test_numpy_array_d1_uintp and test_numpy_array_d1_intp fail on 32bit
|
|
donttest="$donttest or test_numpy_array_d1_intp or test_numpy_array_d1_uintp"
|
|
%endif
|
|
%ifarch ppc64le
|
|
# test_memory_loads_keys occasionally fails on crashes on ppc64le
|
|
donttest="$donttest or test_memory_loads_keys"
|
|
%endif
|
|
|
|
%pytest_arch -k "not ($donttest)"
|
|
|
|
%files %{python_files}
|
|
%doc README.md CHANGELOG.md
|
|
%license LICENSE-APACHE LICENSE-MIT
|
|
%{python_sitearch}/orjson
|
|
%{python_sitearch}/orjson-%{version}.dist-info
|
|
|
|
%changelog
|