diff options
| author | zangrc <zangrc.fnst@fujitsu.com> | 2021-10-12 13:28:52 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-10-14 07:15:37 -0700 |
| commit | a7c5d615089b25b11d8166030a4de846c6fdce99 (patch) | |
| tree | 03d4abc65256a1a2474d8c9f7f6a208748aec715 /meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb | |
| parent | e6bf249d30992f845df35c4cbb58c30fb9746445 (diff) | |
| download | meta-openembedded-a7c5d615089b25b11d8166030a4de846c6fdce99.tar.gz | |
python3-multidict: upgrade 5.1.0 -> 5.2.0
-License-Update: Delete the description of the license and use the license address instead.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
5.2.0 (2021-10-03)
=====================
Features
--------
- 1. Added support Python 3.10
2. Started shipping platform-specific wheels with the ``musl`` tag targeting typical Alpine Linux runtimes.
3. Started shipping platform-specific arm64 wheels for Apple Silicon. (`#629 <https://github.com/aio-libs/multidict/issues/629>`_)
Bugfixes
--------
- Fixed pure-python implementation that used to raise "Dictionary changed during iteration" error when iterated view (``.keys()``, ``.values()`` or ``.items()``) was created before the dictionary's content change. (`#620 <https://github.com/aio-libs/multidict/issues/620>`_)
Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb b/meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb new file mode 100644 index 0000000000..05b18fa0b5 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-multidict_5.2.0.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | SUMMARY = "Multidicts are useful for working with HTTP headers, URL query args etc." | ||
| 2 | HOMEPAGE = "https://github.com/aio-libs/multidict/" | ||
| 3 | |||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=84c63e2bcd84e619d249af5181e2147f" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "0dd1c93edb444b33ba2274b66f63def8a327d607c6c790772f448a53b6ea59ce" | ||
| 8 | |||
| 9 | inherit pypi setuptools3 ptest | ||
| 10 | |||
| 11 | SRC_URI += " \ | ||
| 12 | file://run-ptest \ | ||
| 13 | " | ||
| 14 | |||
| 15 | RDEPENDS:${PN}-ptest += " \ | ||
| 16 | ${PYTHON_PN}-pytest \ | ||
| 17 | " | ||
| 18 | |||
| 19 | do_install_ptest() { | ||
| 20 | install -d ${D}${PTEST_PATH}/tests | ||
| 21 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 22 | } | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native nativesdk" | ||
