From c2312561dd9b3c45b7846a8dd59ff53f9a7695ef Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Wed, 13 Sep 2017 19:20:32 +0100 Subject: [PATCH] Relax requirements.txt to allow ansible 2.3 Kayobe has a dependency on ansible, which is currently capped to 2.2. Docker has decided to rename the docker-py python module to docker, and made some backwards incompatible API changes to go along with it. Kolla-ansible requires us to use docker (not docker-py) on the target hosts, but this is not supported for the docker_container and docker_image ansible modules that kayobe uses with ansible 2.2. Upgrading to ansible 2.3 allows us to support the new docker python package. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 28614763c..2ae47429a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ansible<2.3.0 # GPLv3 +ansible<2.4.0 # GPLv3 cliff>=2.5.0 # Apache netaddr!=0.7.16,>=0.7.13 # BSD PyYAML>=3.10.0 # MIT