From 3df34654a0c98cdb6c696aebc6ef5035acb36152 Mon Sep 17 00:00:00 2001 From: Sylvain Bauza Date: Fri, 29 Jun 2018 11:44:23 +0200 Subject: [PATCH] Fix placement incompatible with webob 1.7 In Ie4d81fa178b3ed6b2a7b450b4978009486f07810 we started using a new WebOb API for introspecting headers but since this new API isn't supported by older versions than 1.8, we need to only accept 1.8.1 or 1.8.2 for Nova (because 1.8.0 was having a bug fixed by 1.8.1 at least). Change-Id: I345f372815aef5ac0fb6fc607812ce81587734bf Closes-Bug: #1773225 --- lower-constraints.txt | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lower-constraints.txt b/lower-constraints.txt index 6f78ffb90..9f1d6e86f 100644 --- a/lower-constraints.txt +++ b/lower-constraints.txt @@ -166,7 +166,7 @@ urllib3==1.22 vine==1.1.4 voluptuous==0.11.1 warlock==1.3.0 -WebOb==1.7.1 +WebOb==1.8.2 websockify==0.8.0 wrapt==1.10.11 wsgi-intercept==1.7.0 diff --git a/requirements.txt b/requirements.txt index 95f9849aa..746f6831c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ keystonemiddleware>=4.17.0 # Apache-2.0 lxml!=3.7.0,>=3.4.1 # BSD Routes>=2.3.1 # MIT cryptography>=2.1 # BSD/Apache-2.0 -WebOb>=1.7.1 # MIT +WebOb>=1.8.2 # MIT greenlet>=0.4.10 # MIT PasteDeploy>=1.5.0 # MIT Paste>=2.0.2 # MIT