diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-09-30 15:42:38 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-09-30 07:34:24 -0700 |
| commit | 54088faccc2dff2f84ae2690896a417eee66f536 (patch) | |
| tree | 22cd954396dd17b2718c2133637fdccd827e04d2 /meta-python/recipes-devtools/python/python3-anyio_4.6.0.bb | |
| parent | 6b29f4e7d1de253ea6bdfed1b2f991cb46fc52e6 (diff) | |
| download | meta-openembedded-54088faccc2dff2f84ae2690896a417eee66f536.tar.gz | |
python3-anyio: upgrade 4.4.0 -> 4.6.0
Changelog:
==========
- Dropped support for Python 3.8
- Fixed 100% CPU use on asyncio while waiting for an exiting task group to
finish while said task group is within a cancelled cancel scope
- Fixed cancel scopes on asyncio not propagating CancelledError on exit when
the enclosing cancel scope has been effectively cancelled
- Fixed asyncio task groups not yielding control to the event loop at exit if
there were no child tasks to wait on
- Fixed inconsistent task uncancellation with asyncio cancel scopes belonging
to a task group when said task group has child tasks running
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-anyio_4.6.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-anyio_4.6.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.6.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.6.0.bb new file mode 100644 index 0000000000..57f0712518 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-anyio_4.6.0.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | SUMMARY = "High level compatibility layer for multiple asynchronous event loop implementations" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c0a769411d2af7894099e8ff75058c9f" | ||
| 5 | |||
| 6 | inherit pypi python_setuptools_build_meta | ||
| 7 | |||
| 8 | SRC_URI[sha256sum] = "137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb" | ||
| 9 | |||
| 10 | DEPENDS += " \ | ||
| 11 | python3-setuptools-scm-native \ | ||
| 12 | " | ||
| 13 | |||
| 14 | # Don't provide "trio" PACKAGECONFIG as nothing provides "python3-trio" currently. | ||
| 15 | # If somebody needs this please feel free to add python3-trio and enable the | ||
| 16 | # packageconfig below: | ||
| 17 | #PACKAGECONFIG ??= "" | ||
| 18 | #PACKAGECONFIG[trio] = ",,,python3-trio" | ||
| 19 | |||
| 20 | RDEPENDS:${PN} += "\ | ||
| 21 | python3-idna \ | ||
| 22 | python3-sniffio \ | ||
| 23 | python3-core \ | ||
| 24 | python3-numbers \ | ||
| 25 | python3-io \ | ||
| 26 | python3-asyncio \ | ||
| 27 | " | ||
