From fc1f7a1f54bb01c5e6fcf7abf024006e5e0c13a5 Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Mon, 23 Dec 2024 11:37:02 +0100 Subject: [PATCH] Add python_requires to setup.py (#982) Fixes: #980 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 801c38a5..f800cec0 100755 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ include_package_data=True, # declarations in MANIFEST.in install_requires=["Django>=4.2"], extras_require={"tablib": ["tablib"]}, + python_requires=">=3.9,=<3.12", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment",