From e5fa8c8bbd29084f41bdcc209dff9220f5556e4a Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 2 Dec 2025 17:51:16 +0800 Subject: python3-anyio: upgrade 4.11.0 -> 4.12.0 Changelog: =============== - Added support for asyncio's task call graphs on Python 3.14 and later when using AnyIO's task groups - Added an asynchronous implementation of the functools module - Added support for uvloop=True on Windows via the winloop implementation - Added support for use as a context manager to anyio.lowlevel.RunVar - Added __all__ declarations to public submodules (anyio.lowlevel etc.) - Added the ability to set the token count of a CapacityLimiter to zero - Added parameters case_sensitive and recurse_symlinks along with support for path-like objects to anyio.Path.glob() and anyio.Path.rglob() - Dropped sniffio as a direct dependency and added the get_available_backends() function - Fixed Process.stdin.send() not raising ClosedResourceError and BrokenResourceError on asyncio. Previously, a non-AnyIO exception was raised in such cases - Fixed Process.stdin.send() not checkpointing before writing data on asyncio - Fixed a race condition where cancelling a Future from BlockingPortal.start_task_soon() would sometimes not cancel the async function - Fixed the presence of the pytest plugin causing breakage with older versions of pytest (<= 6.1.2) - Fixed a rarely occurring RuntimeError: Set changed size during iteration while shutting down the process pool when using the asyncio backend Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../python/python3-anyio_4.11.0.bb | 27 ---------------------- .../python/python3-anyio_4.12.0.bb | 27 ++++++++++++++++++++++ 2 files changed, 27 insertions(+), 27 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-anyio_4.11.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-anyio_4.12.0.bb (limited to 'meta-python') diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.11.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.11.0.bb deleted file mode 100644 index a24674c5fb..0000000000 --- a/meta-python/recipes-devtools/python/python3-anyio_4.11.0.bb +++ /dev/null @@ -1,27 +0,0 @@ -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] = "82a8d0b81e318cc5ce71a5f1f8b5c4e63619620b63141ef8c995fa0db95a57c4" - -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 \ -" diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.12.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.12.0.bb new file mode 100644 index 0000000000..500c1bd3dc --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-anyio_4.12.0.bb @@ -0,0 +1,27 @@ +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] = "73c693b567b0c55130c104d0b43a9baf3aa6a31fc6110116509f27bf75e21ec0" + +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 \ +" -- cgit v1.2.3-54-g00ecf