From fb851f966636121b0a047a5cac5fefbffe88fab0 Mon Sep 17 00:00:00 2001 From: Yifei Zhang Date: Tue, 5 Jul 2022 01:08:21 +0000 Subject: [PATCH] Pin pipenv version to 2021.5.29 to solve "TypeError: 'NoneType' object is not callable" issue. https://github.com/pypa/pipenv/issues/4829 --- bin/install-ansible | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-ansible b/bin/install-ansible index 7b994b8..42eeb01 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -23,7 +23,7 @@ fi export PATH=/usr/local/bin:$PATH export PIP_DEFAULT_TIMEOUT=60 -pip3 install pipenv +pip3 install pipenv==2021.5.29 echo "Installing ansible and dependencies..." PIPENV_NOSPIN=1 PIPENV_HIDE_EMOJIS=1 pipenv sync 2>&1 | iconv -c -f utf-8 -t ascii