From 6b00d4c1fe87a7472bca813045ca10d9f5079949 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 11 Apr 2018 10:19:14 +0200 Subject: [PATCH] force python version >=3 on pip --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 1bfbb24..948aa51 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ except ImportError: read_readme = lambda f: open(f, 'r').read() VERSION = dotdrop.__version__ +REQUIRES_PYTHON = '>=3' setup( name='dotdrop', @@ -28,6 +29,7 @@ setup( author_email='deadc0de6@foo.bar', license='GPLv3', + requires_python=REQUIRES_PYTHON, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python :: 3.3',