summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-04-02 10:13:44 +0800
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-04-01 19:29:09 -0700
commit0640d096362aa53f10476d26208bb3ab30344d6e (patch)
tree02a81cbdb3c18d083fb3fab01f61061ba041fa2a /meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb
parent72d71376910e26d8dba29f27bc9397f0aaaa6ebc (diff)
downloadmeta-openembedded-0640d096362aa53f10476d26208bb3ab30344d6e.tar.gz
python3-marshmallow: upgrade 4.2.2 -> 4.2.3
Changelog: =========== - Make marshmallow.fields.Number and marshmallow.fields.Mapping abstract base classes to prevent using them within Schemas - Allow required to be set on marshmallow.fields.Contant - Fix marshmallow.validate.OneOf emitting extra pairs when labels outnumber choices - Fix behavior when passing a dot-delimited attribute name to partial for a key with data_key set - Fix Enum field by-name lookup to only return actual members - marshmallow.fields.DateTime with format="timestamp_ms" properly rejects bool values - Fix typing of error_essages argument to marshmallow.fields.Field - Add ipaddress.* to marshmallow.Schema.TYPE_MAPPING - Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb b/meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb
new file mode 100644
index 0000000000..d41ec8f6de
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_4.2.3.bb
@@ -0,0 +1,34 @@
1SUMMARY = "Simplified object serialization in python"
2DESCRIPTION = "Marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes."
3HOMEPAGE = "https://github.com/marshmallow-code/marshmallow"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "\
6 file://LICENSE;md5=27586b20700d7544c06933afe56f7df4 \
7 file://docs/license.rst;md5=13da439ad060419fb7cf364523017cfb"
8
9SRC_URI[sha256sum] = "3e3fef6b3603721a25a723b8caedfa488369bddaf9bc03b40b9442c90aebd22b"
10
11CVE_PRODUCT = "marshmallow"
12
13inherit python_flit_core pypi ptest-python-pytest
14
15RDEPENDS:${PN}-ptest += " \
16 python3-pytz \
17 python3-simplejson \
18 python3-zoneinfo \
19 python3-tzdata \
20"
21
22do_install_ptest:append () {
23 rm -rf ${D}${PTEST_PATH}/tests/mypy_test_cases
24}
25
26RDEPENDS:${PN} += " \
27 python3-compression \
28 python3-datetime \
29 python3-email \
30 python3-json \
31 python3-numbers \
32 python3-pprint \
33 python3-packaging \
34"