From 10d1c600278a85df12db8d2362b43695a26ffd91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksi=20H=C3=A4kli?= Date: Wed, 17 May 2023 20:39:56 +0300 Subject: [PATCH] Allow Python >= 3.7 for RTD compatibility Documentation autobuilder fails if Python 3.7 is not permitted for package installations in RTD --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4dbc3cd..99ac508 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ setup( package_dir={"axes": "axes"}, use_scm_version=True, setup_requires=["setuptools_scm"], - python_requires=">=3.8", + python_requires=">=3.7", install_requires=["django>=3.2", "setuptools"], extras_require={ "ipware": "django-ipware>=3",