From 6f0e13b909ff47d17a8017e11969d0ab37d2f477 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 12 Apr 2018 22:14:49 -0400 Subject: [PATCH] Don't install zuul_build_depends for pip When installing zuul from pip (pypi.python.org) there is no need to install the build dependenies as we download the wheel. Change-Id: I2c33e0a0a92b5b7386b952626200473cc77fbb93 Signed-off-by: Paul Belanger --- tasks/install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index 6b6abd9..d540fdf 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -23,6 +23,6 @@ name: "{{ item }}" state: installed with_items: "{{ zuul_build_depends }}" - when: zuul_install_method == 'git' or zuul_install_method == 'pip' + when: zuul_install_method == 'git' - include: "install/{{ zuul_install_method }}.yaml"