From c0c3c0900bfbe3d042b11e877193b8ef0d993df7 Mon Sep 17 00:00:00 2001 From: Zara Date: Fri, 5 Jan 2018 21:45:41 +0000 Subject: [PATCH] Pin version of webob to 1.7.4 Pecan depends on webob. We don't currently specify a version, so Pecan pulls in the latest version of webob. (1.8.0rc1) There is some incompatibility between our codebase and the latest version of webob, causing our tests to fail. This patch pins webob to the last known compatible version, so that development is not blocked on investigating the incompatibility. In the future, we should investigate further so that we can use up to date python dependencies Change-Id: I8d4f14c992c18b53888657580a292a21b565de85 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 84aa15d6..522f2c9f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,6 +16,7 @@ PyYAML>=3.1.0 requests>=1.1 six>=1.7.0 SQLAlchemy>=0.9.7,<=0.9.99 +webob==1.7.4 WSME>=0.6,<0.8 sqlalchemy-migrate>=0.9.1,!=0.9.2 SQLAlchemy-FullText-Search>=0.2.3