From aaafea872c0d6e4a5a3317011319dec4bb9d89be Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 2 Aug 2018 22:55:43 -0400 Subject: [PATCH] Remove python3 default for whisper This was incorrectly merged when we copypasta from another role. We actually are fine with python2 for now. Change-Id: I3f9f122c3a25bbb105f6dad254db8ff1e4d817d3 Signed-off-by: Paul Belanger --- tasks/install.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index 2e63000..1577ee2 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -24,12 +24,4 @@ state: installed when: whisper_install_method == 'git' or whisper_install_method == 'pip' -- name: Define whisper_pip_executable if needed. - set_fact: - whisper_pip_executable: pip3 - when: - - whisper_install_method == 'git' or whisper_install_method == 'pip' - - whisper_pip_virtualenv_python is not defined - - whisper_pip_executable is not defined - - include: "install/{{ whisper_install_method }}.yaml"