Added pip option '--break-system-packages'.

This commit is contained in:
Patrick Lehmann
2025-10-27 07:34:29 +01:00
parent fbf1108ec2
commit 68c8c8b7cc
2 changed files with 5 additions and 5 deletions

View File

@@ -215,9 +215,9 @@ jobs:
if: matrix.system == 'msys2'
run: |
if [ -n '${{ inputs.mingw_requirements }}' ]; then
python -m pip install --disable-pip-version-check ${{ inputs.mingw_requirements }}
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.mingw_requirements }}
else
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
fi
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)