From: Kefu Chai Date: Thu, 11 Apr 2019 02:02:32 +0000 (+0800) Subject: qa/tasks/ceph_deploy: install python3.6 instead of python3.4 for py3 tests X-Git-Tag: v15.1.0~2962^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F27504%2Fhead;p=ceph.git 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 --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index e51bc89ad35e..56868f16fa0a 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'