From 082fa014a529056706dd888567a32e4d393d019e Mon Sep 17 00:00:00 2001 From: Taylor Smith Date: Thu, 31 May 2018 15:51:02 -0500 Subject: [PATCH] Force python version >= 3.5 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index c2e4c1a..13b5824 100644 --- a/setup.py +++ b/setup.py @@ -51,4 +51,5 @@ setuptools.setup(name="packtml", include_package_data=True, install_requires=REQUIREMENTS, package_data={"packtml": ["*"]}, + python_requires='>=3.5, <4', version=VERSION)