From 6b636200f544bd6300f850efd955cb8e8bf9a366 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Mon, 23 Nov 2015 15:55:45 -0500 Subject: [PATCH] Add a temporary version cap on subunit2sql This commit adds a temporary version cap on subunit2sql to be < 1.0.0. The 1.0.0 release includes a very large database migration which will be slow to execute. The python DB api from >=v1.0.0 will not work with a database that doesn't have the updated schema. So while the migration is running let's cap the version we install to prevent everything from breaking while the migration is running. (which might take days) Change-Id: Ieadcc6847a1648bc247fd840ec95653f438be664 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f8d8ec98..0f063825 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ # process, which may cause wedges in the gate later. pbr<2.0,>=1.6 flask -subunit2sql>=0.11.0 +subunit2sql>=0.11.0,<1.0.0 sqlalchemy flask-jsonpify PyMySQL>=0.6.2