From 5582538a70d38c6379a6e539bd45731039e44dbb Mon Sep 17 00:00:00 2001 From: moanos Date: Thu, 14 Nov 2024 18:28:02 +0100 Subject: [PATCH] fix: Pin django registration version, otherwise causes reverse error --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c13177b..2e0b0a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,8 @@ dependencies = [ "model_bakery", "markdown", "Pillow", - "django-registration", - "psycopg2", + "django-registration<=3.4", + "psycopg2-binary", "django-crispy-forms", "crispy-bootstrap4", "djangorestframework",