From 78605cf1e573451d75ca3439b1909a4d7278b0eb Mon Sep 17 00:00:00 2001 From: Ryan Rowe Date: Tue, 16 Jun 2020 17:54:09 -0700 Subject: [PATCH] python3-typeguard: Upgrade 2.7.1 -> 2.9.1 2.9.1 (2020-06-07) - Fixed ImportError on Python < 3.8 when typing_extensions was not installed 2.9.0 (2020-06-06) - Upped the minimum Python version from 3.5.2 to 3.5.3 - Added support for typing.NoReturn - Added full support for typing_extensions (now equivalent to support of the typing module) - Added the option of supplying check_type() with globals/locals for correct resolution of forward references - Fixed erroneous TypeError when trying to check against non-runtime typing.Protocol (skips the check for now until a proper compatibility check has been implemented) - Fixed forward references in TypedDict not being resolved - Fixed checking against recursive types 2.8.0 (2020-06-02) - Added support for the Mock and MagicMock types (PR by prescod) - Added support for typing_extensions.Literal (PR by Ryan Rowe) - Fixed unintended wrapping of untyped generators (PR by prescod) - Fixed checking against bound type variables with check_type() without a call memo - Fixed error message when checking against a Union containing a Literal Signed-off-by: Ryan Rowe Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- ...{python3-typeguard_2.7.1.bb => python3-typeguard_2.9.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-typeguard_2.7.1.bb => python3-typeguard_2.9.1.bb} (72%) diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb similarity index 72% rename from meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb rename to meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb index b62b60564a..a0167cf03b 100644 --- a/meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb +++ b/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb @@ -3,8 +3,8 @@ HOMEPAGE = "https://pypi.org/project/typeguard/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53" -SRC_URI[md5sum] = "ef743359de59f8fe17e7c5e3af70e2c5" -SRC_URI[sha256sum] = "2d545c71e9439c21bcd7c28f5f55b3606e6106f7031ab58375656a1aed483ef2" +SRC_URI[md5sum] = "411df8eefd76ffa014328a46342bdf38" +SRC_URI[sha256sum] = "529ef3d88189cc457f4340388028412f71be8091c2c943465146d4170fb67288" inherit pypi setuptools3