diff options
| author | Michael Merickel <michael@merickel.org> | 2017-10-22 13:53:39 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2017-10-22 13:53:39 -0500 |
| commit | a5d3d2924dc5e43afe44fa71da1a71627ff3d10c (patch) | |
| tree | 0d666fde66d499ab44b89122c001da7f32a7972f /setup.py | |
| parent | 11551647993f3000c8aaf7d3bbae5cfa3c27e005 (diff) | |
| parent | d5a66295d8044cd7d60c684a5c1732771822d149 (diff) | |
| download | pyramid-a5d3d2924dc5e43afe44fa71da1a71627ff3d10c.tar.gz pyramid-a5d3d2924dc5e43afe44fa71da1a71627ff3d10c.tar.bz2 pyramid-a5d3d2924dc5e43afe44fa71da1a71627ff3d10c.zip | |
Merge branch 'pr/3140'
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -11,7 +11,6 @@ # FITNESS FOR A PARTICULAR PURPOSE # ############################################################################## - from setuptools import setup, find_packages def readfile(name): @@ -24,7 +23,6 @@ CHANGES = readfile('CHANGES.txt') install_requires = [ 'setuptools', 'WebOb >= 1.7.0rc2', # Response.has_body - 'repoze.lru >= 0.4', # py3 compat 'zope.interface >= 3.8.0', # has zope.interface.registry 'zope.deprecation >= 3.5.0', # py3 compat 'venusian >= 1.0a3', # ``ignore`` @@ -87,6 +85,7 @@ setup(name='pyramid', python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', install_requires=install_requires, extras_require={ + ':python_version<"3.2"': ['repoze.lru >= 0.4'], 'testing': testing_extras, 'docs': docs_extras, }, |
