From 0f7831e3ee2d8504120005bd82cc0eb03d39c73d Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 18 Apr 2011 23:18:58 -0400 Subject: - Pyramid now depends on WebOb >= 1.0.2 (tests depend on the bugfix in that release: "Fix handling of WSGI environs with missing ``SCRIPT_NAME``"). (Note that in reality, everyone should probably be using 1.0.4 or better though, as WebOb 1.0.2 and 1.0.3 were effectively brownbag releases.) --- CHANGES.txt | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 3ae834d93..a59218eff 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -114,6 +114,14 @@ Bug Fixes - Redirects issued by a static view did not take into account any existing ``SCRIPT_NAME`` (such as one set by a url mapping composite). Now they do. +Dependencies +------------ + +- Pyramid now depends on WebOb >= 1.0.2 (tests depend on the bugfix in that + release: "Fix handling of WSGI environs with missing ``SCRIPT_NAME``"). + (Note that in reality, everyone should probably be using 1.0.4 or better + though, as WebOb 1.0.2 and 1.0.3 were effectively brownbag releases.) + 1.0 (2011-01-30) ================ diff --git a/setup.py b/setup.py index 7c7c80040..ac9db9ab7 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 >= 1.0', # no "default_charset" + 'WebOb >= 1.0.2', # no "default_charset"; request.script_name doesnt error 'repoze.lru', 'setuptools', 'zope.component >= 3.6.0', # independent of zope.hookable -- cgit v1.2.3