From 22832b263dbca873fa4f38b11008f8b07d9224ab Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Tue, 28 Jan 2020 16:54:59 +1000 Subject: [PATCH] ceph_ansible: Make sure cryptography version is compatible Fixes: https://tracker.ceph.com/issues/43843 Signed-off-by: Brad Hubbard --- teuthology/task/ceph_ansible.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index b6af083dd5..7231abac2b 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'), -- 2.39.5