From 7dee4e8520fede0ec2f4574d0f986965259ce7b5 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Mon, 13 Nov 2023 14:19:46 +0200 Subject: [PATCH] Pin allauth due to template changes (#194) --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2507222..d7d582d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,8 @@ classifiers = [ ] dependencies = [ - "django-allauth>=0.53.0", + # Pinned to due to backward-incompatible template changes in 0.58.0. + "django-allauth>=0.53.0,<0.58.0", "django-otp>=1.2.0", "django>=4.1", "qrcode>=5.3",