From 8d88206e477280f239e71d4ea25b22cef5f4c71a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Trellu?= Date: Sun, 19 Nov 2023 20:00:56 -0500 Subject: [PATCH] [common] Remove setuptool from ansible and pin ansible version --- utils/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/common.sh b/utils/common.sh index db07c3e0..ff63065d 100644 --- a/utils/common.sh +++ b/utils/common.sh @@ -210,7 +210,7 @@ function create_python_venv() { # does not support PyYAML > 5.3.1 version. function install_ansible() { echo -ne "➤ Installing Ansible requirements in Python virtualenv... " - pip3 install ansible PyYAML==5.3.1 setuptools &>>"$LOG_FILE" + pip3 install ansible==8.6.1 PyYAML==5.3.1 &>>"$LOG_FILE" ansible-galaxy collection install -r ansible/requirements.yml &>>"$LOG_FILE" echo -e "[$done_format]" }