Skip to content

Commit

Permalink
Merge pull request #8 from pybuilder/force_external_venv
Browse files Browse the repository at this point in the history
Break system packages on MacOS Homebrew installing VirtualEnv
  • Loading branch information
arcivanov authored Dec 23, 2023
2 parents e918a01 + 30f5480 commit 8043cee
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 8043cee

Please sign in to comment.