Skip to content

Commit 68c8c8b

Browse files
committed
Added pip option '--break-system-packages'.
1 parent fbf1108 commit 68c8c8b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ApplicationTesting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ jobs:
215215
if: matrix.system == 'msys2'
216216
run: |
217217
if [ -n '${{ inputs.mingw_requirements }}' ]; then
218-
python -m pip install --disable-pip-version-check ${{ inputs.mingw_requirements }}
218+
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.mingw_requirements }}
219219
else
220-
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
220+
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
221221
fi
222222
223223
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)

.github/workflows/UnitTesting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
if: matrix.system == 'msys2'
204204
shell: pwsh
205205
run: |
206-
py -3.9 -m pip install --disable-pip-version-check -U tomli
206+
py -3.9 -m pip install --disable-pip-version-check --break-system-packages -U tomli
207207
208208
- name: Compute pacman/pacboy packages
209209
id: pacboy
@@ -330,9 +330,9 @@ jobs:
330330
if: matrix.system == 'msys2'
331331
run: |
332332
if [ -n '${{ inputs.mingw_requirements }}' ]; then
333-
python -m pip install --disable-pip-version-check ${{ inputs.mingw_requirements }}
333+
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.mingw_requirements }}
334334
else
335-
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
335+
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
336336
fi
337337
338338
# Before scripts

0 commit comments

Comments
 (0)