Skip to content

Commit

Permalink
Break system packages on MacOS Homebrew installing VirtualEnv
Browse files Browse the repository at this point in the history
This has recently became a requirement if Python is a system one
  • Loading branch information
arcivanov committed Dec 23, 2023
1 parent e918a01 commit 30f5480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ runs:
shell: bash
if: inputs.with-venv == 'true'
run: |
$PYTHON -m pip install virtualenv
$PYTHON -m pip install --break-system-packages virtualenv
virtualenv $HOME/.pyb
echo "$HOME/.pyb/bin" >> $GITHUB_PATH
Expand All @@ -116,7 +116,7 @@ runs:
shell: bash
if: inputs.install-pyb == 'true'
run: |
$PYTHON -m pip install 'pybuilder${{ inputs.pyb-version }}'
$PYTHON -m pip install --break-system-packages 'pybuilder${{ inputs.pyb-version }}'
which pyb
pyb --version
Expand Down

0 comments on commit 30f5480

Please sign in to comment.