File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,14 @@ jobs:
5454 - name : Install system dependencies (brew)
5555 if : matrix.config.installation_method == 'brew'
5656 run : brew install pre-commit
57- - name : Install system dependencies (pip)
58- if : matrix.config.installation_method == 'pip'
57+ - name : Install system dependencies (pip, non-macOS )
58+ if : matrix.config.installation_method == 'pip' && matrix.config.os != 'macOS-latest'
5959 run : |
6060 pip3 install pre-commit --user
61+ - name : Install system dependencies (pip, macOS)
62+ if : matrix.config.installation_method == 'pip' && matrix.config.os == 'macOS-latest'
63+ run : |
64+ pip3 install pre-commit --user --break-system-packages
6165 - uses : r-lib/actions/setup-r-dependencies@v2
6266 - name : Remove reticulate for other installation methods
6367 run : |
You can’t perform that action at this time.
0 commit comments