From 5b5bd312b46ee90fa7bcccc1c1ff4f56de8a5042 Mon Sep 17 00:00:00 2001 From: Marie PUPO JEAMMET Date: Fri, 27 Jun 2025 17:09:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(backend)=20fix=20Redis=20dependenc?= =?UTF-8?q?y=20to=20<6.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pin the redis dependency to <6.0.0 to fix ResolutionImpossible errors in future renovate PRs. See https://github.com/suitenumerique/meet/pull/553 --- src/backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 33d0163..323ce1e 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -57,7 +57,7 @@ dependencies = [ "mozilla-django-oidc==4.0.1", "nested-multipart-parser==1.5.0", "psycopg[binary]==3.2.9", - "redis==5.2.1", + "redis<=6.0.0", "requests==2.32.4", "sentry-sdk[django]==2.32.0", "whitenoise==6.9.0",