From 095e27219104ada4a7a86c08313c2f1ff162d34d Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 7 Dec 2017 13:22:42 +0200 Subject: [PATCH] Add python_requires to help pip install correct version --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 0c7eb0e..81afb2d 100644 --- a/setup.py +++ b/setup.py @@ -64,6 +64,7 @@ setup( author_email='me@kevinmccarthy.org', url='https://github.com/kevin1024/vcrpy', packages=find_packages(exclude=excluded_packages), + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*', install_requires=install_requires, extras_require=extras_require, license='MIT',