mirror of https://github.com/docker/docker-py.git
Bump docker-pycreds dependency ; bump patch number
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
c2b4c8e2e2
commit
2ad403c78b
|
@ -1,2 +1,2 @@
|
||||||
version = "1.10.1"
|
version = "1.10.2"
|
||||||
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
|
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
|
||||||
|
|
|
@ -1,6 +1,17 @@
|
||||||
Change Log
|
Change Log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
1.10.2
|
||||||
|
------
|
||||||
|
|
||||||
|
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed)
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
* Updated the docker-pycreds dependency as it was causing issues for some
|
||||||
|
users with dependency resolution in applications using docker-py.
|
||||||
|
|
||||||
|
|
||||||
1.10.1
|
1.10.1
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,4 @@ six>=1.4.0
|
||||||
websocket-client==0.32.0
|
websocket-client==0.32.0
|
||||||
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
|
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
|
||||||
ipaddress==1.0.16 ; python_version < '3.3'
|
ipaddress==1.0.16 ; python_version < '3.3'
|
||||||
docker-pycreds==0.2.0
|
docker-pycreds==0.2.1
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ requirements = [
|
||||||
'requests >= 2.5.2, < 2.11',
|
'requests >= 2.5.2, < 2.11',
|
||||||
'six >= 1.4.0',
|
'six >= 1.4.0',
|
||||||
'websocket-client >= 0.32.0',
|
'websocket-client >= 0.32.0',
|
||||||
'docker-pycreds >= 0.2.0'
|
'docker-pycreds >= 0.2.1'
|
||||||
]
|
]
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
|
|
Loading…
Reference in New Issue