From 482bb2e59182c11f66b45539d12414a366b5bb72 Mon Sep 17 00:00:00 2001 From: Hendy Irawan Date: Sat, 3 Oct 2020 23:58:18 +0700 Subject: [PATCH] build(install): Upgrade Ansible to 2.8.15 (or later patch version) --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 46ce4247..b5bd43f5 100644 --- a/install.py +++ b/install.py @@ -163,7 +163,7 @@ def install_prerequisites(): install_package('pip3', 'python3-pip') success = run_os_command({ - 'python3': "sudo -H python3 -m pip install --upgrade setuptools wheel cryptography ansible==2.8.5 pip" + 'python3': "sudo -H python3 -m pip install --upgrade setuptools wheel cryptography ansible~=2.8.15 pip" }) if not (success or shutil.which('ansible')):