From 1b260333fd57ce057b6550b05e3a6044a1e3df3b Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Mon, 10 Mar 2025 08:09:41 -0700 Subject: [PATCH] CI: Unconditionally upgrade pip on macOS --- ci/macos/prepare.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ci/macos/prepare.sh b/ci/macos/prepare.sh index 19272e3de0..25ad859b33 100755 --- a/ci/macos/prepare.sh +++ b/ci/macos/prepare.sh @@ -9,8 +9,6 @@ brew update brew upgrade cmake brew install cppzmq openssl@3 swig bison flex ccache libmaxminddb dnsmasq -if [ $(sw_vers -productVersion | cut -d '.' -f 1) -lt 14 ]; then - python3 -m pip install --upgrade pip -fi - +# Upgrade pip so we have the --break-system-packages option. +python3 -m pip install --upgrade pip python3 -m pip install --user --break-system-packages websockets