From 59bf642d71cf7ca7260a08a732505bf598003b0c Mon Sep 17 00:00:00 2001 From: patrick Date: Mon, 28 Jun 2021 18:43:55 +0000 Subject: [PATCH] update to Django 3.2.4 --- fet2020/fet2020/settings.py | 3 +++ fet2020/requirements.txt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/fet2020/fet2020/settings.py b/fet2020/fet2020/settings.py index 1c7d3851..71084d45 100644 --- a/fet2020/fet2020/settings.py +++ b/fet2020/fet2020/settings.py @@ -285,3 +285,6 @@ CRONJOBS = [ # AUTHENTICATIONS LOGIN_URL = "/auth/login" + +# MIGRATION FROM DJANGO 3.1 TO DJANGO 3.2 +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' diff --git a/fet2020/requirements.txt b/fet2020/requirements.txt index 389e7ec3..86709c6f 100644 --- a/fet2020/requirements.txt +++ b/fet2020/requirements.txt @@ -1,4 +1,4 @@ -django==3.1.5 +django==3.2.4 django-ckeditor==6.1.0 django-crontab==0.7.1 django-environ==0.4.5