From 7babc46261d24d0a46d6394a2bfbaa34f2af50bc Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Tue, 20 Aug 2024 16:40:38 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=87=EF=B8=8F(backend)=20downgrade=20djang?= =?UTF-8?q?o=20to=205.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Downgrade django from 5.1 to 5.0.8. There is a compatibility issue with easy_thumbnails, which is not yet compatible with Django 5.1. --- 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 9cadd83a..097b3711 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -36,7 +36,7 @@ dependencies = [ "django-redis==5.4.0", "django-storages[s3]==1.14.4", "django-timezone-field>=5.1", - "django==5.1", + "django==5.0.8", "djangorestframework==3.15.2", "drf_spectacular==0.27.2", "dockerflow==2024.4.2",