From 441503653073f465c0140f6f78f079526cf8efc2 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Tue, 28 Mar 2017 01:18:21 -0500 Subject: depend on python_requires in pip 9+ to check runtime versions - The python_requires checks work when installing a wheel as well, which these checks did not affect. --- setup.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 29de8dcdf..ff3e38874 100644 --- a/setup.py +++ b/setup.py @@ -13,21 +13,9 @@ ############################################################################## import os -import sys -import warnings from setuptools import setup, find_packages -py_version = sys.version_info[:2] - -if (3, 0) <= py_version < (3, 4): - warnings.warn( - 'On Python 3, Pyramid only supports Python 3.4 or better', - UserWarning, - ) -elif py_version < (2, 7): - raise RuntimeError('On Python 2, Pyramid requires Python 2.7 or better') - here = os.path.abspath(os.path.dirname(__file__)) try: with open(os.path.join(here, 'README.rst')) as f: -- cgit v1.2.3