Skip to content

Commit 0917604

Browse files
authored
Merge pull request #16105 from ethereum/fix_pip_usage_in_ci
add "--break-system-packages" to pip install on CI
2 parents 584cdcc + fbd9d1a commit 0917604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ commands:
127127
if [[ "<< parameters.packages >>" != "" ]]
128128
then
129129
echo "Installing additional packages..."
130-
python3 -m pip install --user << parameters.packages >>
130+
python3 -m pip install --user --break-system-packages << parameters.packages >>
131131
fi
132132
133133
install_foundry:

0 commit comments

Comments
 (0)