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.) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') 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 From feef5257261f3c37f11571a475dbd68f603b144e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 22 Apr 2011 00:15:01 -0400 Subject: version bump --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index ac9db9ab7..5208f58a1 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ if sys.version_info[:2] < (2, 6): install_requires.append('simplejson') setup(name='pyramid', - version='1.0', + version='1.1a0', description=('The Pyramid web application development framework, a ' 'Pylons project'), long_description=README + '\n\n' + CHANGES, -- cgit v1.2.3