mirror of https://github.com/docker/docker-py.git
Upgrade Windows dependency
Signed-off-by: Ofek Lev <ofekmeister@gmail.com>
This commit is contained in:
parent
74a0734d37
commit
c65d437843
|
@ -11,8 +11,7 @@ paramiko==2.4.2
|
||||||
pycparser==2.17
|
pycparser==2.17
|
||||||
pyOpenSSL==18.0.0
|
pyOpenSSL==18.0.0
|
||||||
pyparsing==2.2.0
|
pyparsing==2.2.0
|
||||||
pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
|
pywin32==227; sys_platform == 'win32'
|
||||||
pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6'
|
|
||||||
requests==2.20.0
|
requests==2.20.0
|
||||||
six==1.10.0
|
six==1.10.0
|
||||||
urllib3==1.24.3
|
urllib3==1.24.3
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -24,10 +24,7 @@ extras_require = {
|
||||||
':python_version < "3.3"': 'ipaddress >= 1.0.16',
|
':python_version < "3.3"': 'ipaddress >= 1.0.16',
|
||||||
|
|
||||||
# win32 APIs if on Windows (required for npipe support)
|
# win32 APIs if on Windows (required for npipe support)
|
||||||
# Python 3.6 is only compatible with v220 ; Python < 3.5 is not supported
|
':sys_platform == "win32"': 'pywin32==227',
|
||||||
# on v220 ; ALL versions are broken for v222 (as of 2018-01-26)
|
|
||||||
':sys_platform == "win32" and python_version < "3.6"': 'pypiwin32==219',
|
|
||||||
':sys_platform == "win32" and python_version >= "3.6"': 'pypiwin32==223',
|
|
||||||
|
|
||||||
# If using docker-py over TLS, highly recommend this option is
|
# If using docker-py over TLS, highly recommend this option is
|
||||||
# pip-installed or pinned.
|
# pip-installed or pinned.
|
||||||
|
|
Loading…
Reference in New Issue