diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2025-03-18 16:02:49 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-03-18 07:36:56 -0700 |
| commit | ce91849438344471983b51623c5c2fdef3d30027 (patch) | |
| tree | 43dc8970ebef877614026cda5710898781ce8151 /meta-python/recipes-devtools/python/python3-anyio_4.9.0.bb | |
| parent | 0657f744b87b5c224bb47047a8dbd9ed96463a6a (diff) | |
| download | meta-openembedded-ce91849438344471983b51623c5c2fdef3d30027.tar.gz | |
python3-anyio: Upgrade 4.8.0 -> 4.9.0
Upgrade to release 4.9.0:
- Added async support for temporary file handling
- Added 4 new fixtures for the AnyIO pytest plugin:
- free_tcp_port_factory: session scoped fixture returning a
callable that generates unused TCP port numbers
- free_udp_port_factory: session scoped fixture returning a
callable that generates unused UDP port numbers
- free_tcp_port: function scoped fixture that invokes the
free_tcp_port_factory fixture to generate a free TCP port number
- free_udp_port: function scoped fixture that invokes the
free_udp_port_factory fixture to generate a free UDP port number
- Added stdin argument to anyio.run_process() akin to what
anyio.open_process(), asyncio.create_subprocess(),
trio.run_process(), and subprocess.run()
- Added the info property to anyio.Path on Python 3.14
- Changed anyio.getaddrinfo() to ignore (invalid) IPv6 name
resolution results when IPv6 support is disabled in Python
- Changed EndOfStream raised from MemoryObjectReceiveStream.receive()
to leave out the AttributeError from the exception chain which
was merely an implementation detail and caused some confusion
- Fixed traceback formatting growing quadratically with level of
TaskGroup nesting on asyncio due to exception chaining when
raising ExceptionGroups in TaskGroup.__aexit__
- Fixed anyio.Path.iterdir() making a blocking call in Python 3.13
- Fixed connect_tcp() producing cyclic references in tracebacks when
raising exceptions
- Fixed anyio.to_thread.run_sync() needlessly holding on to
references of the context, function, arguments and others until
the next work item on asyncio
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.9.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-anyio_4.9.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.9.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.9.0.bb new file mode 100644 index 0000000000..9cbe26a6d5 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-anyio_4.9.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] = "673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028" | ||
| 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 | " | ||
