summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
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: