Merged in DCD-1387-pipenv-fix (pull request #154)

DCD-1387: The latest pipenv broke under Amazon Linux, so pin to previous.

Approved-by: Nasser Ghazali-Beiklar
This commit is contained in:
Steve Smith
2021-11-08 02:10:21 +00:00

View File

@@ -21,7 +21,9 @@ fi
export PATH=/usr/local/bin:$PATH export PATH=/usr/local/bin:$PATH
export PIP_DEFAULT_TIMEOUT=60 export PIP_DEFAULT_TIMEOUT=60
pip3 install pipenv echo "Installing pipenv..."
pip3 install pipenv==2021.5.29
echo "Installing ansible and dependencies..." echo "Installing ansible and dependencies..."
PIPENV_NOSPIN=1 PIPENV_HIDE_EMOJIS=1 pipenv sync 2>&1 | iconv -c -f utf-8 -t ascii PIPENV_NOSPIN=1 PIPENV_HIDE_EMOJIS=1 pipenv sync 2>&1 | iconv -c -f utf-8 -t ascii