mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to version 4.3.0: - Added support for the Python 3.12 walk_up keyword argument in anyio.Path.relative_to() (PR by Colin Taylor) - Fixed passing total_tokens to anyio.CapacityLimiter() as a keyword argument not working on the trio backend (#515) - Fixed Process.aclose() not performing the minimum level of necessary cleanup when cancelled. Previously: - Cancellation of Process.aclose() could leak an orphan process - Cancellation of run_process() could very briefly leak an orphan process. - Cancellation of Process.aclose() or run_process() on Trio could leave standard streams unclosed - Fixed Process.stdin.aclose(), Process.stdout.aclose(), and Process.stderr.aclose() not including a checkpoint on asyncio - Fixed documentation on how to provide your own typed attributes Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
785 B
BlitzBasic
28 lines
785 B
BlitzBasic
SUMMARY = "High level compatibility layer for multiple asynchronous event loop implementations"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c0a769411d2af7894099e8ff75058c9f"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
SRC_URI[sha256sum] = "f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"
|
|
|
|
DEPENDS += " \
|
|
python3-setuptools-scm-native \
|
|
"
|
|
|
|
# Don't provide "trio" PACKAGECONFIG as nothing provides "python3-trio" currently.
|
|
# If somebody needs this please feel free to add python3-trio and enable the
|
|
# packageconfig below:
|
|
#PACKAGECONFIG ??= ""
|
|
#PACKAGECONFIG[trio] = ",,,python3-trio"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-idna \
|
|
python3-sniffio \
|
|
python3-core \
|
|
python3-numbers \
|
|
python3-io \
|
|
python3-asyncio \
|
|
"
|