From d192f23e6ed92e8e0fbe2947a57e4023977184fd Mon Sep 17 00:00:00 2001 From: Adarnof Date: Fri, 23 Feb 2018 11:57:06 -0500 Subject: [PATCH] Require exactly django-registration==2.4 This is the newest version which allows installation on Django 2.0 (and indeed does work) that also provides the scheme context to emails. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d075e8d2..f09fbb22 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ install_requires = [ 'django>=1.11', 'django-bootstrap-form', - 'django-registration>=2.4,<3.0', + 'django-registration==2.4', 'django-sortedm2m', 'django-redis-cache>=1.7.1', 'django-celery-beat',