summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-10-22 13:53:39 -0500
committerMichael Merickel <michael@merickel.org>2017-10-22 13:53:39 -0500
commita5d3d2924dc5e43afe44fa71da1a71627ff3d10c (patch)
tree0d666fde66d499ab44b89122c001da7f32a7972f /setup.py
parent11551647993f3000c8aaf7d3bbae5cfa3c27e005 (diff)
parentd5a66295d8044cd7d60c684a5c1732771822d149 (diff)
downloadpyramid-a5d3d2924dc5e43afe44fa71da1a71627ff3d10c.tar.gz
pyramid-a5d3d2924dc5e43afe44fa71da1a71627ff3d10c.tar.bz2
pyramid-a5d3d2924dc5e43afe44fa71da1a71627ff3d10c.zip
Merge branch 'pr/3140'
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 2af0535c3..14c0ab770 100644
--- a/setup.py
+++ b/setup.py
@@ -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,
},