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.
This commit is contained in:
Mark Goddard 2017-09-13 19:20:32 +01:00
parent a8f95c9e8a
commit c2312561dd
1 changed files with 1 additions and 1 deletions

View File

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