summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-trio_0.29.0.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2025-02-14 18:18:13 +0200
committerKhem Raj <raj.khem@gmail.com>2025-02-14 20:27:17 -0800
commit627e2e76f88469bb6dd36013877a7b5a28cbc592 (patch)
treebc77f9ea9332b68811ac10b4227d5cb37f41f48f /meta-python/recipes-devtools/python/python3-trio_0.29.0.bb
parentfe09b04b6877c6f9ae355fe1aa7188614a1b5ccd (diff)
downloadmeta-openembedded-627e2e76f88469bb6dd36013877a7b5a28cbc592.tar.gz
python3-trio: Upgrade 0.28.0 -> 0.29.0
Upgrade to release 0.29.0: - Add trio.lowlevel.in_trio_run() and trio.lowlevel.in_trio_task() and document the semantics (and differences) thereof. See the documentation. - If trio.testing.RaisesGroup does not get the expected exceptions it now raises an AssertionError with a helpful message, instead of letting the raised exception/group fall through. The raised exception is available in the __context__ of the AssertionError and can be seen in the traceback. - Clear Trio's cache of worker threads upon os.fork. - Stop using ctypes to mutate tracebacks for strict_exception_groups=False's exception collapsing. - Fixed spelling error in Windows error code enum for ERROR_INVALID_PARAMETER. - Publicly re-export __version__ for type checking purposes. - The typing of trio.abc.HostnameResolver.getaddrinfo() has been corrected to match that of the stdlib socket.getaddrinfo, which was updated in mypy 1.15 (via a typeshed update) to include the possibility of tuple[int, bytes] for the sockaddr field of the result. This happens in situations where Python was compiled with --disable-ipv6. - Additionally, the static typing of trio.to_thread.run_sync(), trio.from_thread.run() and trio.from_thread.run_sync() has been improved and should reflect the underlying function being run. 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-trio_0.29.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-trio_0.29.0.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-trio_0.29.0.bb b/meta-python/recipes-devtools/python/python3-trio_0.29.0.bb
new file mode 100644
index 0000000000..35fd05a199
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-trio_0.29.0.bb
@@ -0,0 +1,18 @@
1SUMMARY = "A friendly Python library for async concurrency and I/O"
2HOMEPAGE = "https://github.com/python-trio/trio"
3LICENSE = "Apache-2.0 & MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=447ea202d14d2aee40d8a2c26c865da9 \
5 file://LICENSE.APACHE2;md5=3b83ef96387f14655fc854ddc3c6bd57 \
6 file://LICENSE.MIT;md5=5f229c828e5a6f0a2ce90c7d3c054721"
7
8SRC_URI[sha256sum] = "ea0d3967159fc130acb6939a0be0e558e364fee26b5deeecc893a6b08c361bdf"
9
10inherit pypi python_setuptools_build_meta
11
12RDEPENDS:${PN} = " \
13 python3-idna \
14 python3-sniffio \
15 python3-attrs \
16 python3-outcome \
17 python3-sortedcontainers \
18"