diff options
| author | Bert JW Regeer <bertjw@regeer.org> | 2016-04-12 17:54:46 -0600 |
|---|---|---|
| committer | Bert JW Regeer <bertjw@regeer.org> | 2016-04-12 17:54:46 -0600 |
| commit | ccd9e10cb15fa7256feb47663eb994cd00dfe782 (patch) | |
| tree | 71d519b06340bb6bf7f686b4429a5d51235bf42f /setup.py | |
| parent | 480de0bad931c6b64013e63b3af66902336e65a4 (diff) | |
| download | pyramid-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |
