Files
meta-openembedded/meta-python/recipes-devtools/python/python3-anyio_4.14.1.bb
T
Wang Mingyu 3701549931 python3-anyio: upgrade 4.14.0 -> 4.14.1
Changelog:
==============
- Fixed teardown of higher-scoped async fixtures failing on asyncio with
  RuntimeError: Attempted to exit cancel scope in a different task than it was
  entered in when an async test raise an outcome exception (e.g., pytest.skip(),
  pytest.xfail(), or pytest.fail())
- Fixed CapacityLimiter.total_tokens rejecting a value of 0 when the limiter
  was instantiated outside of an event loop, contradicting the documented
  behavior of allowing 0 total tokens

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-30 14:31:20 -07:00

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] = "8d648a3544c1a700e3ff78615cd679e4c5c3f149904287e73687b2596963629e"
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 \
"