Skip to content

Commit fbd9d1a

Browse files
committed
ci: add "--break-system-packages" to pip install
`pip install` or even `pip install --user` on its own does not work anymore on recent ubuntu versions to prevent breaking system packages (PEP 0668)
1 parent 584cdcc commit fbd9d1a

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)