From a5a11b54b362ab1ea8afb150794bb1a61cd8faa4 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 14 Sep 2020 16:15:31 +0300 Subject: [PATCH] python3-nocasedict: Upgrade 0.5.0 -> 1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 1.0.0 with the following bug fixes: - Test: Fixed that the reversed test against the built-in dict was attempted on Python 3.7, but the built-in dict became reversible only in Python 3.8. - Test: Fixed issue on pypy2 (Python 2.7) where the testcases for update() passed keyword arguments that had integer-typed argument names. That is supported by CPython 2.7 when passing them as a kwargs dict, but not by pypy2. Removed these testcases, because the support for that feature in CPython 2.7 is not part of the Python language. - Docs: Fixed missing Python 2 only methods in RTD docs - Pylint: Accomodated new ‘raise-missing-from’ check in Pylint 2.6.0. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- ...ython3-nocasedict_0.5.0.bb => python3-nocasedict_1.0.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-nocasedict_0.5.0.bb => python3-nocasedict_1.0.0.bb} (62%) diff --git a/meta-python/recipes-devtools/python/python3-nocasedict_0.5.0.bb b/meta-python/recipes-devtools/python/python3-nocasedict_1.0.0.bb similarity index 62% rename from meta-python/recipes-devtools/python/python3-nocasedict_0.5.0.bb rename to meta-python/recipes-devtools/python/python3-nocasedict_1.0.0.bb index 440cf5109..dae1ebf30 100644 --- a/meta-python/recipes-devtools/python/python3-nocasedict_0.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-nocasedict_1.0.0.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/pywbem/nocasedict" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" -SRC_URI[md5sum] = "b1037d65f1f73322c3c2d76681195bb3" -SRC_URI[sha256sum] = "ed74b83c7b81505ccaf4b09b0581477fdd5c1099c929098a6a170a91ec26fd33" +SRC_URI[md5sum] = "14b405bf7ffe9d0f784aa9c3c39e277b" +SRC_URI[sha256sum] = "22840b434e40f20da6d2ccf0821baba54589e2476499b65420b6e4c2e669aa04" inherit pypi setuptools3