mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Changelog: ============ -Add support for PEP 728, supporting the closed keyword argument and the special __extra_items__ key for TypedDict. -Add support for PEP 742, adding typing_extensions.TypeIs. -Drop runtime error when a read-only TypedDict item overrides a mutable one. Type checkers should still flag this as an error. -Speedup issubclass() checks against simple runtime-checkable protocols by around 6% (backporting python/cpython#112717 -Fix a regression in the implementation of protocols where typing.Protocol classes that were not marked as @runtime_checkable would be unnecessarily introspected, potentially causing exceptions to be raised if the protocol had problematic members. (From OE-Core rev: 91dd6f2878bcdbb6f9ba65927f6c6f981b0b3f1a) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
1002 B
BlitzBasic
25 lines
1002 B
BlitzBasic
SUMMARY = "Backported and Experimental Type Hints for Python 3.7+"
|
|
DESCRIPTION = "The typing_extensions module serves two related purposes:\
|
|
\
|
|
* Enable use of new type system features on older Python versions. For \
|
|
example, typing.TypeGuard is new in Python 3.10, but typing_extensions \
|
|
allows users on previous Python versions to use it too.\
|
|
* Enable experimentation with new type system PEPs before they are accepted \
|
|
and added to the typing module."
|
|
HOMEPAGE = "https://github.com/python/typing_extensions"
|
|
BUGTRACKER = "https://github.com/python/typing_extensions/issues"
|
|
SECTIONS = "libs"
|
|
LICENSE = "PSF-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fcf6b249c2641540219a727f35d8d2c2"
|
|
|
|
# The name on PyPi is slightly different.
|
|
PYPI_PACKAGE = "typing_extensions"
|
|
|
|
SRC_URI[sha256sum] = "b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"
|
|
|
|
inherit pypi python_flit_core
|
|
|
|
UPSTREAM_CHECK_REGEX = "/typing-extensions/(?P<pver>(\d+[\.\-_]*)+)/"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|