diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-12-24 17:26:32 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-12-24 08:23:08 -0800 |
| commit | e132068d4dcdf926797f79deb1235834ca668e31 (patch) | |
| tree | fd62cdf0de69eac68efde324ed4c9fa833dda36f /meta-python/recipes-devtools/python/python3-janus_2.0.0.bb | |
| parent | b43757fed6c66bda3c1436ed215b406466326450 (diff) | |
| download | meta-openembedded-e132068d4dcdf926797f79deb1235834ca668e31.tar.gz | |
python3-janus: upgrade 1.1.0 -> 2.0.0
Changelog:
==========
- Optimize internal implementation for a little speedup
- Make not-full and not-empty notifications faster
- Add .aclose() async method
- Reduce notifications for a minor speedup
- Allow janus.Queue() instantiation without running asyncio event loop
- Remove sync notifiers for a major speedup
- Fix hang in AsyncQueue.join()
- Implement .shutdown(immediate=False) for both sync and async APIs
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-janus_2.0.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-janus_2.0.0.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-janus_2.0.0.bb b/meta-python/recipes-devtools/python/python3-janus_2.0.0.bb new file mode 100644 index 0000000000..9209f96d66 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-janus_2.0.0.bb | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | SUMMARY = "Mixed sync-async queue to interoperate between asyncio tasks and classic threads" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=23878c357ebb4c8ce1109be365043349" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "0970f38e0e725400496c834a368a67ee551dc3b5ad0a257e132f5b46f2e77770" | ||
| 7 | |||
| 8 | inherit pypi python_setuptools_build_meta | ||
| 9 | |||
| 10 | RDEPENDS:${PN} += "\ | ||
| 11 | python3-asyncio \ | ||
| 12 | python3-threading \ | ||
| 13 | " | ||
| 14 | |||
| 15 | BBCLASSEXTEND = "native nativesdk" | ||
