Merge pull request #718 from bfirsh/docker-py-0.6.0

Upgrade to docker-py 0.6.0
This commit is contained in:
Ben Firshman 2014-12-09 22:12:05 +00:00
commit 2a0782c660
3 changed files with 3 additions and 3 deletions

View File

@ -31,4 +31,4 @@ def docker_client():
ca_cert=ca_cert,
)
return Client(base_url=base_url, tls=tls_config)
return Client(base_url=base_url, tls=tls_config, version='1.14')

View File

@ -1,5 +1,5 @@
PyYAML==3.10
docker-py==0.5.3
docker-py==0.6.0
dockerpty==0.3.2
docopt==0.6.1
requests==2.2.1

View File

@ -30,7 +30,7 @@ install_requires = [
'requests >= 2.2.1, < 3',
'texttable >= 0.8.1, < 0.9',
'websocket-client >= 0.11.0, < 0.12',
'docker-py >= 0.5.3, < 0.6',
'docker-py >= 0.6.0, < 0.7',
'dockerpty >= 0.3.2, < 0.4',
'six >= 1.3.0, < 2',
]