File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ packaging==16.8
11
11
pycparser == 2.17
12
12
pyOpenSSL == 17.0.0
13
13
pyparsing == 2.2.0
14
+ pypiwin32 == 219 ; sys_platform == 'win32' and python_version < '3.6'
15
+ pypiwin32 == 220 ; sys_platform == 'win32' and python_version >= '3.6'
14
16
requests == 2.14.2
15
17
six == 1.10.0
16
18
websocket-client == 0.40.0
Original file line number Diff line number Diff line change 26
26
'docker-pycreds >= 0.2.1'
27
27
]
28
28
29
- if sys .platform == 'win32' :
30
- requirements .append ('pypiwin32 >= 219' )
31
-
32
29
extras_require = {
33
30
':python_version < "3.5"' : 'backports.ssl_match_hostname >= 3.5' ,
34
31
# While not imported explicitly, the ipaddress module is required for
35
32
# ssl_match_hostname to verify hosts match with certificates via
36
33
# ServerAltname: https://pypi.python.org/pypi/backports.ssl_match_hostname
37
34
':python_version < "3.3"' : 'ipaddress >= 1.0.16' ,
38
35
36
+ # win32 APIs if on Windows (required for npipe support)
37
+ # Python 3.6 is only compatible with v220 ; Python < 3.5 is not supported
38
+ # on v220 ; ALL versions are broken for v222 (as of 2018-01-26)
39
+ ':sys_platform == "win32" and python_version < "3.6"' : 'pypiwin32==219' ,
40
+ ':sys_platform == "win32" and python_version >= "3.6"' : 'pypiwin32==220' ,
41
+
39
42
# If using docker-py over TLS, highly recommend this option is
40
43
# pip-installed or pinned.
41
44
Original file line number Diff line number Diff line change 1
1
-r requirements.txt
2
- pypiwin32>=219
You can’t perform that action at this time.
0 commit comments