From 041a57fca73c11aac9cb1f2739c63bf21c1e866b Mon Sep 17 00:00:00 2001 From: Lee Goolsbee Date: Tue, 31 Mar 2026 10:31:19 -0500 Subject: [PATCH 1/2] WPTIN-18751 pin to pipenv 2026.4.0 for now; 2026.5.0 breaks --python during sync --- bin/install-ansible | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/install-ansible b/bin/install-ansible index 20cd9df..9ca1fdb 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -14,15 +14,15 @@ elif [[ $ID = "amzn" ]] && [[ $VERSION = "2023" ]]; then python3.11-pip \ python3.11-devel echo "Installing pipenv..." - pip3.11 install pipenv + pip3.11 install pipenv==2026.4.0 PIPENV_PYTHON="3.11" else # FIXME: Currently assumes Debian-based apt-get update && \ apt-get install -y \ python3-dev \ - python3-pip \ - pipenv + python3-pip + pip3 install pipenv==2026.4.0 fi export PATH=/usr/local/bin:$PATH export PIP_DEFAULT_TIMEOUT=60 From 6d44461736194876121b46fb0f03e0108671874b Mon Sep 17 00:00:00 2001 From: Lee Goolsbee Date: Tue, 31 Mar 2026 10:58:50 -0500 Subject: [PATCH 2/2] WPTIN-18751 ignore debian-based install for now --- bin/install-ansible | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install-ansible b/bin/install-ansible index 9ca1fdb..07e7c91 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -21,8 +21,8 @@ else apt-get update && \ apt-get install -y \ python3-dev \ - python3-pip - pip3 install pipenv==2026.4.0 + python3-pip \ + pipenv fi export PATH=/usr/local/bin:$PATH export PIP_DEFAULT_TIMEOUT=60