From 2fddc8233366e39662d6aa85451c5d58448b2bb7 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 24 Jun 2025 14:36:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(backend)=20fix=20Redis=20dependenc?= =?UTF-8?q?y=20conflict=20by=20downgrading=20to=20v5.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve ResolutionImpossible error where meet requires redis==6.2.0 but kombu[redis] 5.5.x requires redis<=5.2.1. Downgrade to redis==5.2.1 satisfies overlapping constraints and testing confirms compatibility. Pin the redis dependency. --- renovate.json | 2 +- src/backend/pyproject.toml | 2 +- src/summary/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index 6ff1bbe5..fe5771ef 100644 --- a/renovate.json +++ b/renovate.json @@ -7,7 +7,7 @@ "enabled": false, "groupName": "ignored python dependencies", "matchManagers": ["pep621"], - "matchPackageNames": [] + "matchPackageNames": ["redis"] }, { "enabled": false, diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 84dd2f60..c74a16ce 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -34,7 +34,7 @@ dependencies = [ "django-countries==7.6.1", "django-lasuite==0.0.10", "django-parler==2.3", - "redis==6.2.0", + "redis==5.2.1", "django-redis==6.0.0", "django-storages[s3]==1.14.6", "django-timezone-field>=5.1", diff --git a/src/summary/pyproject.toml b/src/summary/pyproject.toml index 1f526ce2..e8d7df7d 100644 --- a/src/summary/pyproject.toml +++ b/src/summary/pyproject.toml @@ -8,7 +8,7 @@ dependencies = [ "pydantic>=2.5.0", "pydantic-settings>=2.1.0", "celery==5.5.3", - "redis==6.2.0", + "redis==5.2.1", "minio==7.2.15", "openai==1.91.0", "requests==2.32.4",