15
0

Accepting request 1227756 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/1227756
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-mashumaro?expand=0&rev=3
This commit is contained in:
2024-12-03 19:46:00 +00:00
committed by Git OBS Bridge
4 changed files with 29 additions and 6 deletions

View File

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

3
mashumaro-3.15.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Mon Dec 2 09:45:29 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to v3.15:
* Improved Union and basic types deserialization (#256),
highlighted changes:
- Expected int | float or float | int value can now be passed
through without coercion and losing precision
- Expected str value will be guaranteed to be a string version
of the input value (#42)
- Expected bool value will be guaranteed to be a boolean using
standard truth testing procedure for the input value
- Expected NoneType will be guaranteed to be None regardless of
the input value
* Introduced JSON Schema plugin system (#265), see updated
documentation
- Added built-in DocstringDescriptionPlugin to use a docstring
as a description (#222)
* Added support for recursive Union types (#206)
* Configured MANIFEST.in to include tests folder in the sdist
(#262)
* Dropped support for Python 3.8 (#258)
-------------------------------------------------------------------
Tue Nov 12 14:09:47 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-mashumaro
Version: 3.14
Version: 3.15
Release: 0
Summary: Fast and well tested serialization library
License: Apache-2.0
@@ -33,7 +33,7 @@ BuildRequires: python-rpm-macros
BuildRequires: %{python_module typing_extensions >= 4.1.0}
BuildRequires: %{python_module PyYAML >= 3.13}
BuildRequires: %{python_module msgpack >= 0.5.6}
BuildRequires: %{python_module orjson >= 3.6.1 if %python-base < 3.13}
BuildRequires: %{python_module orjson >= 3.10.10}
BuildRequires: %{python_module tomli >= 1.1.0 if %python-base < 3.11}
BuildRequires: %{python_module tomli-w >= 1.0}
# SECTION test requirements
@@ -46,7 +46,7 @@ BuildRequires: %{python_module pytest-xdist >= 3.5.0}
BuildRequires: fdupes
Requires: python-typing_extensions >= 4.1.0
Suggests: python-msgpack >= 0.5.6
Suggests: python-orjson >= 3.6.1
Suggests: python-orjson >= 3.10.10
Suggests: python-tomli >= 1.1.0
Suggests: python-tomli-w >= 1.0
Suggests: python-PyYAML >= 3.13