Skip to content

Commit

Permalink
Add version range for pip dependencies
Browse files Browse the repository at this point in the history
This helps fix #CE-11.

In #CE-11, the latest docker-compose (1.10.x) will trigger error with
`from docker import Client` in python lib.

Also add version range for all other dependencies.

Change-Id: Ifcf021a353eb15956b0c484883964c061a1d5982
Signed-off-by: Baohua Yang <yangbaohua@gmail.com>
  • Loading branch information
yeasy committed Feb 7, 2017
1 parent 62d0362 commit 6c8f0be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
docker-compose>=1.7.0,<=1.9.0
Flask>=0.11.0
greenlet>=0.4.5
gunicorn>=19.0.0
pymongo>=3.2.0
requests>=2.0.0
Flask>=0.10.0,<=1.12.0
greenlet>=0.4.5,<=0.4.12
gunicorn>=19.0.0,<=19.6.0
pymongo>=3.2.0,<=3.4.0
requests>=2.0.0,<=2.13.0

0 comments on commit 6c8f0be

Please sign in to comment.