From 50b7888029ce4c57863453dab0b091802e939350 Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 28 Jul 2021 15:09:56 -0400 Subject: [PATCH] kalite/tasks/install.yml: package 'virtualenv' for Python 2 --- roles/kalite/tasks/install.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/kalite/tasks/install.yml b/roles/kalite/tasks/install.yml index ab6a923a8..11e4dd063 100644 --- a/roles/kalite/tasks/install.yml +++ b/roles/kalite/tasks/install.yml @@ -15,7 +15,8 @@ package: name: - python2 - - python-setuptools # provides setuptools-44 last version compatible with python2 + - python-setuptools # Provides setuptools-44 (last version compatible with python2) + - virtualenv # Provides venv for python2 -- compare python3-venv in scripts/ansible state: present when: not (is_debian_9 or is_debian_10 or is_ubuntu_16 or is_ubuntu_17 or is_ubuntu_18 or is_ubuntu_19) # 2020-03-31: Testing for {is_raspbian_9, is_raspbian_10} is not currently nec, as testing for {is_debian_9, is_debian_10} covers that already.