Files
meta-openembedded/meta-python/recipes-devtools/python/python3-huey_3.3.4.bb
T
Wang Mingyu 2d5cd29a82 python3-huey: upgrade 3.3.2 -> 3.3.4
Changelog:
==========
- Forward the Django database OPTIONS when setting up the stats recorder
  connection.
- Remove accidental sqlite3 access at module scope,
- Use DoubleField for the stats ts, duration and started columns. On PG & MySQL
  the old FloatField was a 32-bit-shitter which lost a lot of seconds of
  precision. Existing PG/MySQL tables will need to run the SQL below to migrate
  OR just drop the tables and allow them to be rebuilt next run. SQLite was not
  affected.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-08-19 14:27:43 -07:00

21 lines
455 B
BlitzBasic

SUMMARY = "a little task queue for python"
SECTION = "devel/python"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4"
PYPI_PACKAGE = "huey"
SRC_URI[sha256sum] = "6de196c6ece2e38b5173f7510600091ab035c0e86b0958d0e5b38a82b9984666"
RDEPENDS:${PN} += " \
python3-datetime \
python3-logging \
python3-multiprocessing \
python3-json \
"
inherit pypi python_setuptools_build_meta
DEPENDS += "python3-wheel-native"