From e20add13745a95fa1a76f6a2b8d38e969d402e03 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 3 May 2016 08:57:43 +0100 Subject: [PATCH] Add dependencies for paramiko 2.0 Paramiko version 2.0 has been released. It now uses the Python library cryptography. Installing this requires additional system packages. This commit adds in the appropriate packages required by cryptography based on its documentation [1]. An alternative approach would have been to constrain the version of Paramiko however the project describes the 1.x versions as relying on insecure dependencies [2]. [1] https://cryptography.io/en/latest/installation/ [2] http://www.paramiko.org/installing.html Change-Id: I7c761221b1fb347eccc820556ea45c58e792563b --- other-requirements.txt | 4 ++++ run_tests.sh | 0 2 files changed, 4 insertions(+) mode change 100644 => 100755 run_tests.sh diff --git a/other-requirements.txt b/other-requirements.txt index 6eac5c2..67cd643 100644 --- a/other-requirements.txt +++ b/other-requirements.txt @@ -14,3 +14,7 @@ # TODO(odyssey4me) remove this once https://review.openstack.org/288634 has merged # and the disk images are rebuilt and redeployed. curl + +# Requirements for Paramiko 2.0 +libssl-dev +libffi-dev diff --git a/run_tests.sh b/run_tests.sh old mode 100644 new mode 100755