mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Added pip option '--break-system-packages'.
This commit is contained in:
4
.github/workflows/ApplicationTesting.yml
vendored
4
.github/workflows/ApplicationTesting.yml
vendored
@@ -215,9 +215,9 @@ jobs:
|
|||||||
if: matrix.system == 'msys2'
|
if: matrix.system == 'msys2'
|
||||||
run: |
|
run: |
|
||||||
if [ -n '${{ inputs.mingw_requirements }}' ]; then
|
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
|
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
|
fi
|
||||||
|
|
||||||
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)
|
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)
|
||||||
|
|||||||
6
.github/workflows/UnitTesting.yml
vendored
6
.github/workflows/UnitTesting.yml
vendored
@@ -203,7 +203,7 @@ jobs:
|
|||||||
if: matrix.system == 'msys2'
|
if: matrix.system == 'msys2'
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
py -3.9 -m pip install --disable-pip-version-check -U tomli
|
py -3.9 -m pip install --disable-pip-version-check --break-system-packages -U tomli
|
||||||
|
|
||||||
- name: Compute pacman/pacboy packages
|
- name: Compute pacman/pacboy packages
|
||||||
id: pacboy
|
id: pacboy
|
||||||
@@ -330,9 +330,9 @@ jobs:
|
|||||||
if: matrix.system == 'msys2'
|
if: matrix.system == 'msys2'
|
||||||
run: |
|
run: |
|
||||||
if [ -n '${{ inputs.mingw_requirements }}' ]; then
|
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
|
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
|
fi
|
||||||
|
|
||||||
# Before scripts
|
# Before scripts
|
||||||
|
|||||||
Reference in New Issue
Block a user