From 41b81cda1cd94f1f2702afcac8e152712f31408d Mon Sep 17 00:00:00 2001 From: Jeremy Phelps Date: Wed, 19 Sep 2018 10:29:54 -0500 Subject: [PATCH] Disable py34 install on Ubuntu 18.04 This version of python is not compatible with the default lib-ssl on 18.04 Change-Id: I2e93bcf40f557aa23733449a91d783365f1ffd7d Signed-off-by: Jeremy Phelps --- tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/main.yml b/tasks/main.yml index 527e639..b27a10d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -25,6 +25,7 @@ version: '{{pyenv_version}}' - name: 'Install Python {{python34_version}}' command: pyenv install -s "$PYTHON34_VERSION" + when: ansible_distribution_version != '18.04' - name: 'Install Python {{python35_version}}' command: pyenv install -s "$PYTHON35_VERSION" - name: 'Install Python {{python36_version}}' -- 2.16.6