From eb3665d177eef322a36eda6e3f1e59af4590befc Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 13 Jan 2026 09:51:55 +0000 Subject: [PATCH] gnu: python-celery: Update to 5.6.2. * gnu/packages/python-xyz.scm (python-celery): Update to 5.6.2. [arguments] : Skip one more test. [phases]{relax-requirements}: Remove phase. [propagated-inputs]: Remove python-tzdata; add python-tzlocal. [native-inputs]: Add python-pytest-order. Change-Id: I2b5978c5759b6290a86de1a31755468deba40282 Signed-off-by: Rutherther --- gnu/packages/python-xyz.scm | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 36bd95b4ca9d454128607dc34418b4f16a057629..23589ce1f532facd7a6fc879e7e859e2cf803b35 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20755,17 +20755,17 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.") (define-public python-celery (package (name "python-celery") - (version "5.5.3") + (version "5.6.2") (source (origin (method url-fetch) (uri (pypi-uri "celery" version)) (sha256 - (base32 "198hdgy2mk2h6nzhg78jqlhps0w4z6iw60bz4a0m4awcjvkjm5vc")))) + (base32 "16q0hlsw9p2mri1c1i2l4knq2d8hf83h4a9vglqpdbgjzk1j32aa")))) (build-system pyproject-build-system) (arguments (list - ;; tests: 3165 passed, 26 skipped, 6 deselected, 3 xfailed, 53 warnings, + ;; tests: 3248 passed, 26 skipped, 8 deselected, 3 xfailed, 54 warnings, ;; 28958 subtests passed #:test-flags ;; The MongoDB backend test appears to expect an older version of @@ -20781,15 +20781,10 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.") ;; OSError: [Errno 24] Too many open files "test_register_with_event_loop__no_on_tick_dupes" "test_with_autoscaler_file_descriptor_safety" - "test_with_file_descriptor_safety") - " and not ")) - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'relax-requirements - (lambda _ - (substitute* "requirements/default.txt" - (("^tzdata.*") - "tzdata\n"))))))) + "test_with_file_descriptor_safety" + ;; XXX: Fails to compare local timezones. + "test_use_local_timezone") + " and not ")))) (native-inputs (list python-azure-core python-dnspython @@ -20803,6 +20798,7 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.") python-pytest python-pytest-celery python-pytest-click + python-pytest-order python-pytest-subtests python-pytest-timeout python-redis @@ -20815,7 +20811,7 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.") python-click-repl python-dateutil python-kombu - python-tzdata + python-tzlocal python-vine)) (home-page "https://celeryproject.org") (synopsis "Distributed Task Queue")