From 44d3c738d7456c53b1bad6f906ea406a3defa208 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 28 Aug 2024 11:32:42 +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. Migrate and create-superuser jobs were failing. The issue originated from the third party easy_thumbnail. Please refer to the issue #641 on their repo. This is the suggested workaround by @Miketsukami. --- src/backend/meet/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/meet/settings.py b/src/backend/meet/settings.py index 96a53ea5..b4b5cdc3 100755 --- a/src/backend/meet/settings.py +++ b/src/backend/meet/settings.py @@ -275,6 +275,7 @@ class Base(Configuration): # Easy thumbnails THUMBNAIL_EXTENSION = "webp" THUMBNAIL_TRANSPARENCY_EXTENSION = "webp" + THUMBNAIL_DEFAULT_STORAGE_ALIAS = "default" THUMBNAIL_ALIASES = {} # Celery