Accepting request 887532 from home:bnavigator:branches:devel:languages:python
- Update to 3.11.1 * Fix treatment of dotted keys when unknown=INCLUDE (#1506). Thanks @rbu for reporting and thanks @sirosen for the fix (#1745). - Release 3.11.0 * Add fields.IPInterface, fields.IPv4Interface, and IPv6Interface (#1733). Thanks @madeinoz67 for the suggestion and the PR. * Raise AttributeError for missing methods when using fields. Method (#1675). Thanks @lassandroan. * Remove unnecessary hasattr and getattr checks in Field (#1770). - Release 3.10.0 * Passing field metadata via keyword arguments is deprecated and will be removed in marshmallow 4 (#1350). Use the explicit metadata=... argument instead. Thanks @sirosen. - Release 3.9.1 * Cast to mapping type in Mapping.serialize and Mapping. deserialize (#1685). * Fix bug letting Dict pass invalid dict on deserialization when no key or value Field is specified (#1685). - Release 3.9.0 * Add format argument to fields.Time and timeformat class Meta option (#686). Thanks @BennyAlex for the suggestion and thanks @infinityxxx for the PR. * Remove usage of implicit typing.Optional (#1663). Thanks @nadega for the PR. - Release 3.8.0 * Add fields.IP, fields.IPv4 and fields.IPv6 (#1485). Thanks @mgetka for the PR. * Fix typing in AwareDateTime (#1658). Thanks @adithyabsk for OBS-URL: https://build.opensuse.org/request/show/887532 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-marshmallow?expand=0&rev=29
This commit is contained in:
parent
0e0a7c1aa2
commit
df1a1c66bd
3
marshmallow-3.11.1.tar.gz
Normal file
3
marshmallow-3.11.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:16e99cb7f630c0ef4d7d364ed0109ac194268dde123966076ab3dafb9ae3906b
|
||||
size 173844
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a2a5eefb4b75a3b43f05be1cca0b6686adf56af7465c3ca629e5ad8d1e1fe13d
|
||||
size 170952
|
@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 22 09:42:48 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 3.11.1
|
||||
* Fix treatment of dotted keys when unknown=INCLUDE (#1506).
|
||||
Thanks @rbu for reporting and thanks @sirosen for the fix
|
||||
(#1745).
|
||||
- Release 3.11.0
|
||||
* Add fields.IPInterface, fields.IPv4Interface, and
|
||||
IPv6Interface (#1733). Thanks @madeinoz67 for the suggestion
|
||||
and the PR.
|
||||
* Raise AttributeError for missing methods when using fields.
|
||||
Method (#1675). Thanks @lassandroan.
|
||||
* Remove unnecessary hasattr and getattr checks in Field (#1770).
|
||||
- Release 3.10.0
|
||||
* Passing field metadata via keyword arguments is deprecated and
|
||||
will be removed in marshmallow 4 (#1350). Use the explicit
|
||||
metadata=... argument instead. Thanks @sirosen.
|
||||
- Release 3.9.1
|
||||
* Cast to mapping type in Mapping.serialize and Mapping.
|
||||
deserialize (#1685).
|
||||
* Fix bug letting Dict pass invalid dict on deserialization when
|
||||
no key or value Field is specified (#1685).
|
||||
- Release 3.9.0
|
||||
* Add format argument to fields.Time and timeformat class Meta
|
||||
option (#686). Thanks @BennyAlex for the suggestion and thanks
|
||||
@infinityxxx for the PR.
|
||||
* Remove usage of implicit typing.Optional (#1663). Thanks
|
||||
@nadega for the PR.
|
||||
- Release 3.8.0
|
||||
* Add fields.IP, fields.IPv4 and fields.IPv6 (#1485). Thanks
|
||||
@mgetka for the PR.
|
||||
* Fix typing in AwareDateTime (#1658). Thanks @adithyabsk for
|
||||
reporting.
|
||||
- Use the python3 sphinx_build do build the docs
|
||||
gh#openSUSE/python-rpm-macros#109
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 21 06:15:41 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-marshmallow
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -19,10 +19,10 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define skip_python2 1
|
||||
Name: python-marshmallow
|
||||
Version: 3.7.1
|
||||
Version: 3.11.1
|
||||
Release: 0
|
||||
Summary: ORM/ODM/framework-agnostic library to convert datatypes from/to Python types
|
||||
License: MIT AND BSD-3-Clause
|
||||
License: BSD-3-Clause AND MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://marshmallow.readthedocs.io/
|
||||
Source: https://files.pythonhosted.org/packages/source/m/marshmallow/marshmallow-%{version}.tar.gz
|
||||
@ -66,7 +66,7 @@ HTML Documentation and examples for %{name}.
|
||||
|
||||
%build
|
||||
%python_build
|
||||
sphinx-build docs/ docs/_build/html
|
||||
sphinx-build-%{python3_bin_suffix} docs/ docs/_build/html
|
||||
rm -r docs/_build/html/.buildinfo docs/_build/html/.doctrees
|
||||
|
||||
%install
|
||||
|
Loading…
Reference in New Issue
Block a user