From c234e11b513e0a636d487140728e9830ca1753b9 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Mon, 27 Jan 2020 16:10:55 -0800 Subject: [PATCH] Use newer paramiko Old paramiko uses pycrypto which is out of date and insecure. Switch to new paramiko and cryptography instead. Change-Id: I651244d549d10a848643d1e3b96438833a5954bd --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 4656213..9a7fcbf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ pbr>=0.11 -paramiko>=1.8.0,<2.0.0 +paramiko>=2.0.0 six>=1.7.0