diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2024-03-22 19:56:07 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-03-23 10:01:49 -0700 |
| commit | 37594d354b993925d8ef02c8abe191e6c8e747cf (patch) | |
| tree | 0914fc93c781bf8aa1e97321c069047fe4369e13 /meta-python/recipes-devtools/python/python3-anyio_4.3.0.bb | |
| parent | cf49617d4a5b3767a562552fceea926710aaf30a (diff) | |
| download | meta-openembedded-37594d354b993925d8ef02c8abe191e6c8e747cf.tar.gz | |
python3-anyio: Upgrade 4.2.0 -> 4.3.0
Upgrade to version 4.3.0:
- Added support for the Python 3.12 walk_up keyword argument in
anyio.Path.relative_to() (PR by Colin Taylor)
- Fixed passing total_tokens to anyio.CapacityLimiter() as a
keyword argument not working on the trio backend (#515)
- Fixed Process.aclose() not performing the minimum level of
necessary cleanup when cancelled. Previously:
- Cancellation of Process.aclose() could leak an orphan process
- Cancellation of run_process() could very briefly leak an orphan
process.
- Cancellation of Process.aclose() or run_process() on Trio could
leave standard streams unclosed
- Fixed Process.stdin.aclose(), Process.stdout.aclose(), and
Process.stderr.aclose() not including a checkpoint on asyncio
- Fixed documentation on how to provide your own typed attributes
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.3.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-anyio_4.3.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-anyio_4.3.0.bb b/meta-python/recipes-devtools/python/python3-anyio_4.3.0.bb new file mode 100644 index 0000000000..2c7a9f8cab --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-anyio_4.3.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] = "f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" | ||
| 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 | " | ||
