From 808d948c7b97ed1e7d9d7c45b7e9ff719435cf73 Mon Sep 17 00:00:00 2001 From: Stephen Brown II Date: Tue, 15 Dec 2020 09:00:40 -0700 Subject: [PATCH] Add python_requires to setup.py to fix #421 Addresses #421 by specifying a minimum python version as per https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index cd3fbf4d..bad2348b 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ def get_version(version_tuple): author_email="ross.lawley@gmail.com", zip_safe=False, platforms="any", + python_requires=">=3.6", install_requires=[ "Flask>=1.1.2", "WTForms[email]>=2.3.1",