Skip to content

Commit

Permalink
[Github Actions] Remove --break-system-packages flag (#570)
Browse files Browse the repository at this point in the history
```
no such option: --break-system-packages
Error: Process completed with exit code 2.
```

not sure why I had to insert it yesterday :/
#566
  • Loading branch information
kpouget authored Oct 16, 2024
2 parents ae4979b + 57c92e7 commit 89cdc29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/steps/prepare_minimal_ubuntu_image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ runs:
- name: Install dependencies
shell: bash
run: |
python3 -m pip install --break-system-packages fire pyyaml jsonpath_ng joblib
python3 -m pip install fire pyyaml jsonpath_ng joblib
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Install requirements
run: |
python3 -m pip install --break-system-packages -r docs/requirements.txt
python3 -m pip install -r docs/requirements.txt
- name: Render the docs
run: |
Expand Down

0 comments on commit 89cdc29

Please sign in to comment.