From 28da4cdf8e035a9094669f43cfb62b2360465141 Mon Sep 17 00:00:00 2001 From: Jared Nance Date: Thu, 14 Jan 2021 15:34:10 -0600 Subject: [PATCH] Add Requires-Python for 3.6 due to PEP 526 Variable annotations were not added until 3.6 https://www.python.org/dev/peps/pep-0526/ --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cfbec1b..9940527 100644 --- a/setup.py +++ b/setup.py @@ -24,5 +24,6 @@ packages=find_packages(exclude=["tests*"]), include_package_data=True, install_requires=["aiohttp"], - test_suite="tests" + test_suite="tests", + python_requires=">=3.6" )