From 6af4c4b2d2bc3b17b7eb0604aff160190fe8c03b Mon Sep 17 00:00:00 2001 From: Mike VanDenburgh Date: Mon, 11 Sep 2023 14:44:01 -0400 Subject: [PATCH] Pin django-allauth to minimum version There is a breaking change in this version, so we need to ensure we are at or above it for compatibility reasons. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 56551534c..9351fe37f 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,9 @@ 'dandischema~=0.8.2', 'django~=4.1.0', 'django-admin-display', - 'django-allauth', + # TODO: unpin allauth when https://github.com/girder/django-composed-configuration/pull/189 + # is merged and released + 'django-allauth>=0.56.1', 'django-click', 'django-configurations[database,email]', 'django-extensions',