From 0d967aba48c56b6cc405bdf6379eb77f59e0ae84 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Wed, 14 Jan 2026 10:01:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8C(backend)=20pin=20celery=20to=20ver?= =?UTF-8?q?sion<5.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since celery version 5.6.0 we have trouble with retrying tasks and it is impactig the malware_detection workflow. We have to use version 5.5.3 while we found the issue. --- renovate.json | 7 +++++++ src/backend/pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 250dee8e..7f8e9cab 100644 --- a/renovate.json +++ b/renovate.json @@ -31,6 +31,13 @@ "matchPackageNames": ["django"], "allowedVersions": "<6.0.0" }, + { + + "groupName": "allowed celery versions", + "matchManagers": ["pep621"], + "matchPackageNames": ["celery"], + "allowedVersions": "<5.6.0" + }, { "enabled": false, "groupName": "ignored js dependencies", diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 5310b723..d532906d 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "beautifulsoup4==4.14.3", "boto3==1.42.17", "Brotli==1.2.0", - "celery[redis]==5.6.0", + "celery[redis]==5.5.3", "django-configurations==2.5.1", "django-cors-headers==4.9.0", "django-countries==8.2.0",