From 99d47fc465b49089a91f1dfc1d3d806b2b14a4bc Mon Sep 17 00:00:00 2001 From: mwfarb Date: Fri, 12 Apr 2024 12:02:30 -0400 Subject: [PATCH] fix: upgrade to django 3.2, retaining AutoField key index size --- arena_account/settings.py | 2 ++ requirements.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/arena_account/settings.py b/arena_account/settings.py index 534c1f7..e95c4cc 100644 --- a/arena_account/settings.py +++ b/arena_account/settings.py @@ -126,6 +126,8 @@ ], } +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + # allauth general config ACCOUNT_DEFAULT_HTTP_PROTOCOL = "http" # https for docker, http for localhost:8000 diff --git a/requirements.txt b/requirements.txt index 386eda6..c3cc72b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Django==3.1.14 +Django==3.2.24 django-crispy-forms==1.9.2 django-allauth==0.44.0 pyjwt==2.4.0