From 78605cf1e573451d75ca3439b1909a4d7278b0eb Mon Sep 17 00:00:00 2001 From: Ryan Rowe Date: Tue, 16 Jun 2020 17:54:09 -0700 Subject: 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 --- .../recipes-devtools/python/python3-typeguard_2.7.1.bb | 18 ------------------ .../recipes-devtools/python/python3-typeguard_2.9.1.bb | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb deleted file mode 100644 index b62b60564a..0000000000 --- a/meta-python/recipes-devtools/python/python3-typeguard_2.7.1.bb +++ /dev/null @@ -1,18 +0,0 @@ -SUMMARY = "Run-time type checker for Python" -HOMEPAGE = "https://pypi.org/project/typeguard/" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53" - -SRC_URI[md5sum] = "ef743359de59f8fe17e7c5e3af70e2c5" -SRC_URI[sha256sum] = "2d545c71e9439c21bcd7c28f5f55b3606e6106f7031ab58375656a1aed483ef2" - -inherit pypi setuptools3 - -DEPENDS += "\ - python3-distutils-extra-native \ - python3-setuptools-scm-native \ -" - -RDEPENDS_${PN} += "python3-typing" - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb new file mode 100644 index 0000000000..a0167cf03b --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-typeguard_2.9.1.bb @@ -0,0 +1,18 @@ +SUMMARY = "Run-time type checker for Python" +HOMEPAGE = "https://pypi.org/project/typeguard/" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53" + +SRC_URI[md5sum] = "411df8eefd76ffa014328a46342bdf38" +SRC_URI[sha256sum] = "529ef3d88189cc457f4340388028412f71be8091c2c943465146d4170fb67288" + +inherit pypi setuptools3 + +DEPENDS += "\ + python3-distutils-extra-native \ + python3-setuptools-scm-native \ +" + +RDEPENDS_${PN} += "python3-typing" + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf