From: Brad Hubbard Date: Tue, 28 Jan 2020 06:54:59 +0000 (+1000) Subject: ceph_ansible: Make sure cryptography version is compatible X-Git-Tag: 1.1.0~160^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=22832b263dbca873fa4f38b11008f8b07d9224ab;p=teuthology.git ceph_ansible: Make sure cryptography version is compatible Fixes: https://tracker.ceph.com/issues/43843 Signed-off-by: Brad Hubbard --- diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index b6af083dd..7231abac2 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -432,6 +432,11 @@ class CephAnsible(Task): run.Raw(';'), 'pip', 'install', + '--upgrade', + 'cryptography>=2.5', + run.Raw(';'), + 'pip', + 'install', run.Raw('setuptools>=11.3'), run.Raw('notario>=0.0.13'), # FIXME: use requirements.txt run.Raw('netaddr'),