Skip to content

Commit

Permalink
Fixing PY12 breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Oct 9, 2024
1 parent 14f630a commit 06e6740
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ runs:
- name: Add Python bin to PATH
run: echo "/Library/Frameworks/Python.framework/Versions/Current/bin" >> $GITHUB_PATH
shell: bash
- run: pip3 install setuptools_scm wheel urllib3
- run: pip3 install --break-system-packages setuptools_scm wheel urllib3
shell: bash
- run: pip3 install -U -r ${{ inputs.location }}/requirements.txt
- run: pip3 install --break-system-packages -U -r ${{ inputs.location }}/requirements.txt
shell: bash
- run: which fprime-util
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fpp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
submodules: true
- name: "Install requirements.txt"
run: |
pip3 install -r ./requirements.txt
pip3 install --break-system-packages -r ./requirements.txt
shell: bash
- name: "Generate UT build cache"
working-directory: ./FppTest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-project-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
path: ${{ inputs.fprime_location }}
- name: "Install requirements.txt"
run: |
pip3 install -r ${{ inputs.fprime_location }}/requirements.txt
pip3 install --break-system-packages -r ${{ inputs.fprime_location }}/requirements.txt
shell: bash
- name: "Generate build cache"
working-directory: ${{ inputs.build_location }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
path: ${{ inputs.fprime_location }}
- name: "Install requirements.txt"
run: |
pip3 install -r ${{ inputs.fprime_location }}/requirements.txt
pip3 install --break-system-packages -r ${{ inputs.fprime_location }}/requirements.txt
shell: bash
- name: "Generate UT build cache"
working-directory: ${{ inputs.build_location }}
Expand Down

0 comments on commit 06e6740

Please sign in to comment.