diff options
| author | Chris McDonough <chrism@plope.com> | 2011-09-24 08:39:40 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-09-24 08:39:40 -0400 |
| commit | c9b78f324cdbd38c2ac095ea97472605746e081e (patch) | |
| tree | 17a3b55690445775b746c594c8b7c123e9e03dcc /setup.py | |
| parent | 5942ec4b3e9211436f2ccf044f3cf03a4a9960b2 (diff) | |
| download | pyramid-c9b78f324cdbd38c2ac095ea97472605746e081e.tar.gz pyramid-c9b78f324cdbd38c2ac095ea97472605746e081e.tar.bz2 pyramid-c9b78f324cdbd38c2ac095ea97472605746e081e.zip | |
version minimums
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -29,15 +29,15 @@ except IOError: README = CHANGES = '' install_requires=[ + 'setuptools', 'Chameleon >= 1.2.3', 'Mako >= 0.3.6', # strict_undefined 'WebOb >= 1.2dev', # response.text / py3 compat - 'repoze.lru', - 'setuptools', + 'repoze.lru >= 0.4', # py3 compat 'zope.interface >= 3.8.0', # has zope.interface.registry - 'zope.deprecation', + 'zope.deprecation >= 3.5.0', # py3 compat 'venusian >= 1.0a1', # ``onerror`` - 'translationstring', + 'translationstring >= 0.4', # py3 compat ] if not PY3: @@ -48,11 +48,11 @@ if not PY3: ]) tests_require = install_requires + [ - 'WebTest', + 'WebTest >= 1.3.1', # py3 compat 'virtualenv', ] -if not JYTHON: +if not (JYTHON or PY3): tests_require.extend([ 'Sphinx', 'docutils', |
