From 42167b87909c20c9bb4d32bac02b1e01ec94af13 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 11 Apr 2019 10:02:32 +0800 Subject: [PATCH] qa/tasks/ceph_deploy: install python3.6 instead of python3.4 for py3 tests EPEL7 has switched over to python3.6 as the main python3. and we started packaging python bindings for python3.6 since https://github.com/ceph/ceph-build/pull/1283 Signed-off-by: Kefu Chai --- qa/tasks/ceph_deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index e51bc89ad35..56868f16fa0 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -46,7 +46,7 @@ def download_ceph_deploy(ctx, config): system_type = teuthology.get_system_type(ceph_admin) if system_type == 'rpm': - package = 'python34' if py_ver == '3' else 'python' + package = 'python36' if py_ver == '3' else 'python' ctx.cluster.run(args=[ 'sudo', 'yum', '-y', 'install', package, 'python-virtualenv' -- 2.39.5