diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-10-23 16:47:23 +0800 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2023-10-30 07:14:03 -0400 |
| commit | 23c4129cc7cf5608b2fbcacd9e83fdd18495aa17 (patch) | |
| tree | ab50eb53064d49dad948e53b3bcbcc8f439a9853 /meta-python/recipes-devtools/python/python3-huey_2.5.0.bb | |
| parent | fff923d56511d0d4356a7d25f57466b46f028fdc (diff) | |
| download | meta-openembedded-23c4129cc7cf5608b2fbcacd9e83fdd18495aa17.tar.gz | |
python3-huey: upgrade 2.4.5 -> 2.5.0
Changelog:
==========
-Check to ensure the gevent monkeypatch was applied when running the consumer
with greenlet workers, log warning if it is not.
-Explicitly clear the revoked flag on task instances after execution (#713).
-Add support for delay=, eta= in Huey's .s() and .then()
-Add support for rescheduling callback pipelines when rescheduling a task.
-Add an on_commit_task() decorator for Django extension that will enqueue the
task after any database changes have been committed.
-Allow overriding the delay and eta when raising a RetryTask exception.
-Add a very simple ResultGroup.as_completed() helper to provide a way to deal
with multiple results as they become available.
-Add an asyncio helper for resolving task results asynchronously.
-Fix bug in SIGINT and SIGTERM behavior for gevent users.
-Include lock name when a task fails due to TaskLocked exception
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 4d8d7e6eeaa9389f546eb492b0c4c21f965fc46d)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-huey_2.5.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-huey_2.5.0.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-huey_2.5.0.bb b/meta-python/recipes-devtools/python/python3-huey_2.5.0.bb new file mode 100644 index 0000000000..c6e5606090 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-huey_2.5.0.bb | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | SUMMARY = "a little task queue for python" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4" | ||
| 5 | |||
| 6 | PYPI_PACKAGE = "huey" | ||
| 7 | |||
| 8 | SRC_URI[sha256sum] = "2ffb52fb5c46a1b0d53c79d59df3622312b27e2ab68d81a580985a8ea4ca3480" | ||
| 9 | |||
| 10 | RDEPENDS:${PN} += " \ | ||
| 11 | python3-datetime \ | ||
| 12 | python3-logging \ | ||
| 13 | python3-multiprocessing \ | ||
| 14 | python3-json \ | ||
| 15 | " | ||
| 16 | |||
| 17 | inherit pypi setuptools3 | ||
| 18 | |||
