summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-31 01:53:17 -0400
committerChris McDonough <chrism@plope.com>2011-08-31 01:53:17 -0400
commit1aeae3565e07b99e737e6572ac5ba1b1bbf42abb (patch)
tree0cdf2f6b37bbe38d3d6dbb0b42c1d543a722573c /setup.py
parentc0e6e69eb75ae042f0db3b98a5e064a94235837a (diff)
downloadpyramid-1aeae3565e07b99e737e6572ac5ba1b1bbf42abb.tar.gz
pyramid-1aeae3565e07b99e737e6572ac5ba1b1bbf42abb.tar.bz2
pyramid-1aeae3565e07b99e737e6572ac5ba1b1bbf42abb.zip
- Support an ``onerror`` keyword argument to
``pyramid.config.Configurator.scan()``. This onerror keyword argument is passed to ``venusian.Scanner.scan()`` to influence error behavior when an exception is raised during scanning. - Pyramid now requires Venusian 1.0a1 or better to support the ``onerror`` keyword argument to ``pyramid.config.Configurator.scan``. - Move test fixtures around so test_config tests are not looking "up" for fixtures.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 75f8d16c0..4d32db715 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ install_requires=[
'zope.configuration',
'zope.deprecation',
'zope.interface >= 3.5.1', # 3.5.0 comment: "allow to bootstrap on jython"
- 'venusian >= 0.5', # ``codeinfo``
+ 'venusian >= 1.0a1', # ``onerror``
'translationstring',
]