Skip to content

Commit eacd6cd

Browse files
committed
Add break system packages option to pip
1 parent ce273c4 commit eacd6cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ubuntu-22.04, ubuntu-24.04]
17+
os: [ubuntu-24.04]
1818
env:
1919
DEV_WORKSPACE: "/workspace"
2020
steps:

scripts/base_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function base_install() {
8888
$alt_install \
8989
$NODEJS
9090

91-
pip3_install --break-system-packages \
91+
pip3_install \
9292
neovim \
9393
pynvim==0.5.2
9494

scripts/utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function pacstall_install() {
161161
}
162162

163163
function pip3_install() {
164-
pip3 install "$@"
164+
pip3 install --break-system-packages "$@"
165165

166166
return 0
167167
}

0 commit comments

Comments
 (0)