From 7b82b2e8c721010b73f664e9d4657746a1fcd92b Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Fri, 30 Nov 2018 16:24:38 -0800 Subject: [PATCH] Add SSH-enabled docker SDK to requirements Signed-off-by: Joffrey F --- requirements.txt | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 45ed9049d24..fbb285b6b41 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,6 +12,7 @@ functools32==3.2.3.post2; python_version < '3.2' idna==2.5 ipaddress==1.0.18 jsonschema==2.6.0 +paramiko==2.4.2 pypiwin32==219; sys_platform == 'win32' and python_version < '3.6' pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6' PySocks==1.6.7 diff --git a/setup.py b/setup.py index 22dafdb223c..9efc642c429 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def find_version(*file_paths): 'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.21', 'texttable >= 0.9.0, < 0.10', 'websocket-client >= 0.32.0, < 1.0', - 'docker >= 3.6.0, < 4.0', + 'docker[ssh] >= 3.6.0, < 4.0', 'dockerpty >= 0.4.1, < 0.5', 'six >= 1.3.0, < 2', 'jsonschema >= 2.5.1, < 3',