summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2016-04-12 17:54:46 -0600
committerBert JW Regeer <bertjw@regeer.org>2016-04-12 17:54:46 -0600
commitccd9e10cb15fa7256feb47663eb994cd00dfe782 (patch)
tree71d519b06340bb6bf7f686b4429a5d51235bf42f /setup.py
parent480de0bad931c6b64013e63b3af66902336e65a4 (diff)
downloadpyramid-ccd9e10cb15fa7256feb47663eb994cd00dfe782.tar.gz
pyramid-ccd9e10cb15fa7256feb47663eb994cd00dfe782.tar.bz2
pyramid-ccd9e10cb15fa7256feb47663eb994cd00dfe782.zip
Don't force Py2.7 or higher
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 05476446e..e5ea4c5dc 100644
--- a/setup.py
+++ b/setup.py
@@ -26,8 +26,8 @@ if PY3:
if py_version < (3, 3) and not is_pypy: # PyPy3 masquerades as Python 3.2...
raise RuntimeError('On Python 3, Pyramid requires Python 3.3 or better')
else:
- if py_version < (2, 7):
- raise RuntimeError('On Python 2, Pyramid requires Python 2.7 or better')
+ if py_version < (2, 6):
+ raise RuntimeError('On Python 2, Pyramid requires Python 2.6 or better')
here = os.path.abspath(os.path.dirname(__file__))
try: