Skip to content

Commit 4d5e2ee

Browse files
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 <andreilitvin@google.com>
1 parent 8b905ab commit 4d5e2ee

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/tests/cirque_tests.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,7 @@ function cirquetest_bootstrap() {
114114
set -ex
115115

116116
cd "$REPO_DIR"/third_party/cirque/repo
117-
pip3 uninstall -y setuptools
118-
pip3 install setuptools==65.7.0
119-
pip3 install pycodestyle==2.5.0 wheel
117+
pip3 install --break-system-packages pycodestyle==2.5.0 wheel
120118

121119
make NO_GRPC=1 install -j
122120

@@ -125,7 +123,7 @@ function cirquetest_bootstrap() {
125123
"$REPO_DIR"/integrations/docker/images/stage-2/chip-cirque-device-base/build.sh --build-arg OT_BR_POSIX_CHECKOUT="$OT_BR_POSIX_CHECKOUT"
126124

127125
__cirquetest_build_ot_lazy
128-
pip3 install -r requirements_nogrpc.txt
126+
pip3 install --break-system-packages -r requirements_nogrpc.txt
129127

130128
echo "OpenThread Version: $OPENTHREAD_CHECKOUT"
131129
echo "ot-br-posix Version: $OT_BR_POSIX_CHECKOUT"

0 commit comments

Comments
 (0)