summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-01-19 17:33:29 +0000
committerChris McDonough <chrism@agendaless.com>2010-01-19 17:33:29 +0000
commit2d5424869375bb9d3c4b24489aa164d9b8095e29 (patch)
tree31506f94f2b49b2000ae5d133d15e1359dc04b03 /setup.py
parent2c0f82dae84c3e4fc1d83c5bfb27750131487076 (diff)
downloadpyramid-2d5424869375bb9d3c4b24489aa164d9b8095e29.tar.gz
pyramid-2d5424869375bb9d3c4b24489aa164d9b8095e29.tar.bz2
pyramid-2d5424869375bb9d3c4b24489aa164d9b8095e29.zip
- When WebOb 0.9.7.1 was used, a deprecation warning was issued for
the class attribute named ``charset`` within ``repoze.bfg.request.Request``. BFG now *requires* WebOb >= 0.9.7, and code was added so that this deprecation warning has disappeared.
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 92ac1a3b4..30db71795 100644
--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@ install_requires=[
'Paste > 1.7', # temp version pin to prevent PyPi install failure :-(
'PasteDeploy',
'PasteScript',
- 'WebOb>=0.9.6', # tests fail with earlier versions
+ 'WebOb>=0.9.7', # "default_charset"
'repoze.lru',
'setuptools',
'sourcecodegen>=0.6.11', # tests fail without this requirement? (wtf)