summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2025-01-07 16:00:38 +0200
committerKhem Raj <raj.khem@gmail.com>2025-01-07 09:33:17 -0800
commitafc078bab378bc721a260f5b56165fd4ef129c66 (patch)
tree5c7669a2941ede5fe6b82eef431d0cdbe91a1ec2 /meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb
parent33700ad5f8ca26d5d8a75e9adfc7c0351ae7c385 (diff)
downloadmeta-openembedded-afc078bab378bc721a260f5b56165fd4ef129c66.tar.gz
python3-anyio: Upgrade 4.7.0 -> 4.8.0
Upgrade to release 4.8.0: - Added experimental support for running functions in subinterpreters on Python 3.13 and later - Added support for the copy(), copy_into(), move() and move_into() methods in anyio.Path, available in Python 3.14 - Changed TaskGroup on asyncio to always spawn tasks non-eagerly, even if using a task factory created via asyncio.create_eager_task_factory(), to preserve expected Trio-like task scheduling semantics - Configure SO_RCVBUF, SO_SNDBUF and TCP_NODELAY on the selector thread waker socket pair (this should improve the performance of wait_readable() and wait_writable() when using the ProactorEventLoop) - Fixed AssertionError when using nest-asyncio - Fixed return type annotation of various context managers' __exit__ method Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb
new file mode 100644
index 0000000000..c103eba46d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-anyio_4.8.0.bb
@@ -0,0 +1,27 @@
1SUMMARY = "High level compatibility layer for multiple asynchronous event loop implementations"
2SECTION = "devel/python"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=c0a769411d2af7894099e8ff75058c9f"
5
6inherit pypi python_setuptools_build_meta
7
8SRC_URI[sha256sum] = "1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a"
9
10DEPENDS += " \
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
20RDEPENDS:${PN} += "\
21 python3-idna \
22 python3-sniffio \
23 python3-core \
24 python3-numbers \
25 python3-io \
26 python3-asyncio \
27"