From 4d5e2eed705ee7ca27d7e9dd58fbc45f30367074 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 17 Jun 2024 11:19:37 -0400 Subject: [PATCH] Update cirque pip flags to allow breaking system packages (#33944) * Update cirque pip flags to allow breaking system packages * old setuptools does not work. Try again without the setuptools update --------- Co-authored-by: Andrei Litvin --- scripts/tests/cirque_tests.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/tests/cirque_tests.sh b/scripts/tests/cirque_tests.sh index 67bf0f2de63af5..b6fa0eb7f64e56 100755 --- a/scripts/tests/cirque_tests.sh +++ b/scripts/tests/cirque_tests.sh @@ -114,9 +114,7 @@ function cirquetest_bootstrap() { set -ex cd "$REPO_DIR"/third_party/cirque/repo - pip3 uninstall -y setuptools - pip3 install setuptools==65.7.0 - pip3 install pycodestyle==2.5.0 wheel + pip3 install --break-system-packages pycodestyle==2.5.0 wheel make NO_GRPC=1 install -j @@ -125,7 +123,7 @@ function cirquetest_bootstrap() { "$REPO_DIR"/integrations/docker/images/stage-2/chip-cirque-device-base/build.sh --build-arg OT_BR_POSIX_CHECKOUT="$OT_BR_POSIX_CHECKOUT" __cirquetest_build_ot_lazy - pip3 install -r requirements_nogrpc.txt + pip3 install --break-system-packages -r requirements_nogrpc.txt echo "OpenThread Version: $OPENTHREAD_CHECKOUT" echo "ot-br-posix Version: $OT_BR_POSIX_CHECKOUT"