Add install_requires: "Django >= 3.3"

According to the ChangeLog support for 3.2 was removed.
This commit is contained in:
Thomas Güttler 2022-09-30 10:58:31 +02:00 committed by GitHub
parent 233a401e75
commit 0fd836b39b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,6 +43,9 @@ setup(
"Framework :: Django",
],
python_requires=">=3.7",
install_requires=["django-appconf >= 0.4"],
install_requires=[
"django-appconf >= 0.4",
"Django >= 3.3",
],
)