From 5eb3346b146684c02fba0dcb02825adab1678e01 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 23 Nov 2017 21:17:57 -0200 Subject: [PATCH] Prevent installation in unsupported Python versions Related to #103 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4774b2e1..b7c0f697 100644 --- a/setup.py +++ b/setup.py @@ -41,6 +41,7 @@ def main(): author='Holger Krekel', author_email='holger@merlinux.eu', url='https://github.com/pytest-dev/pluggy', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', classifiers=classifiers, packages=['pluggy'], )