From 87966fa062d31a04336092208391abca5e8160e8 Mon Sep 17 00:00:00 2001 From: Marie PUPO JEAMMET Date: Wed, 28 Aug 2024 11:49:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(backend)=20fix=20dependencies=20co?= =?UTF-8?q?nflicts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrading Django to 5.1 created a severe issue, breaking mail template-associated features. The issue originated from the third party 'easy_thumbnail'. Please refer to the issue #641 on Django's repo. This is the suggested workaround by @Miketsukami. --- src/backend/people/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/people/settings.py b/src/backend/people/settings.py index b86eac0..9d8a266 100755 --- a/src/backend/people/settings.py +++ b/src/backend/people/settings.py @@ -286,6 +286,7 @@ class Base(Configuration): # Easy thumbnails THUMBNAIL_EXTENSION = "webp" THUMBNAIL_TRANSPARENCY_EXTENSION = "webp" + THUMBNAIL_DEFAULT_STORAGE_ALIAS = "default" THUMBNAIL_ALIASES = {} # Celery