From e674f5b07459178fbc6141d4120a075ff3679824 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 21 Aug 2021 13:47:26 +0200 Subject: [PATCH] Updated requirements to allow Django 3.2 --- common/settings.py | 1 + requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common/settings.py b/common/settings.py index a61cc66..3000a30 100644 --- a/common/settings.py +++ b/common/settings.py @@ -21,6 +21,7 @@ DATABASES = { 'PORT': '', # Set to empty string for default. Not used with sqlite3. } } +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' TIME_ZONE = 'Europe/Zurich' diff --git a/requirements.txt b/requirements.txt index cff314d..1fc8397 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Django>=3.0,<3.2 +Django>=3.1,<4.0 tabimport>=0.4.0 xlrd<2 # Required by tabimport openpyxl==3.0.5