From 0fd836b39b7c89a20be36a8eba45db1ac489561b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=BCttler?= Date: Fri, 30 Sep 2022 10:58:31 +0200 Subject: [PATCH] Add install_requires: "Django >= 3.3" According to the ChangeLog support for 3.2 was removed. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5a43497..d520e3b 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,9 @@ def read(*parts): "Framework :: Django", ], python_requires=">=3.7", - install_requires=["django-appconf >= 0.4"], + install_requires=[ + "django-appconf >= 0.4", + "Django >= 3.3", + ], )