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
This commit is contained in:
Matthew Treinish 2015-11-23 15:55:45 -05:00
parent fef489e825
commit 6b636200f5
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 1 additions and 1 deletions

View File

@ -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