Remove restriction for requests version, update docker-py requirement

This commit is contained in:
Rotem Yaari 2015-03-13 12:40:13 +02:00
parent c23189a5fa
commit 81a32a266f
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
PyYAML==3.10 PyYAML==3.10
docker-py==1.0.0 docker-py==1.1.0
dockerpty==0.3.2 dockerpty==0.3.2
docopt==0.6.1 docopt==0.6.1
requests==2.2.1 requests==2.5.3
six==1.7.3 six==1.7.3
texttable==0.8.2 texttable==0.8.2
websocket-client==0.11.0 websocket-client==0.11.0

View File

@ -27,10 +27,10 @@ def find_version(*file_paths):
install_requires = [ install_requires = [
'docopt >= 0.6.1, < 0.7', 'docopt >= 0.6.1, < 0.7',
'PyYAML >= 3.10, < 4', 'PyYAML >= 3.10, < 4',
'requests >= 2.2.1, < 2.5.0', 'requests >= 2.5.0, < 2.6',
'texttable >= 0.8.1, < 0.9', 'texttable >= 0.8.1, < 0.9',
'websocket-client >= 0.11.0, < 1.0', 'websocket-client >= 0.11.0, < 1.0',
'docker-py >= 1.0.0, < 1.1.0', 'docker-py >= 1.1.0, < 1.2',
'dockerpty >= 0.3.2, < 0.4', 'dockerpty >= 0.3.2, < 0.4',
'six >= 1.3.0, < 2', 'six >= 1.3.0, < 2',
] ]