From fa5187b7dae2e14f838cb02415802edceeffea05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Sun, 24 Mar 2019 14:44:34 -0700 Subject: [PATCH] Python 3.5 compatibility After all, we don't use any 3.6-specific feature, so should just support all major python 3 versions. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index aba8523..d90b788 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( long_description=readme, packages=["tutor"], include_package_data=True, - python_requires=">=3.6", + python_requires=">=3.5", install_requires=[ "appdirs", "click>=7.0", @@ -48,6 +48,7 @@ setup( "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python", + "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", ],