From 3bb1a909122bad67b10c070648868473b1c6e3e9 Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Mon, 3 Jan 2022 14:31:42 -0800 Subject: [PATCH] packaging: add python_requires >= 3.6 https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#python-requires --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a50df3c6..2538a913 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ author='Ryan Barrett', author_email='oauth-dropins@ryanb.org', license='Public domain', + python_requires='>=3.6', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',