Skip to content

Commit d4b7a38

Browse files
committed
Use system install pyhton for tox
Signed-off-by: Samuel Monson <smonson@redhat.com>
1 parent 35a44d3 commit d4b7a38

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/run-tox/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
shell: bash
2424
- name: Install dependencies
2525
run: |
26-
uv pip install tox tox-uv
26+
uv pip install --system tox tox-uv
2727
shell: bash
2828
- name: Run tox
2929
run: |

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: ${{ matrix.python }}
3636
- name: Install dependencies
3737
run: |
38-
uv pip install tox tox-pdm
38+
uv pip install --system tox tox-pdm
3939
- name: Build the package
4040
run: |
4141
export GUIDELLM_BUILD_TYPE=nightly

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python-version: ${{ matrix.python }}
3535
- name: Install dependencies
3636
run: |
37-
uv pip install tox tox-pdm
37+
uv pip install --system tox tox-pdm
3838
- name: Build the package
3939
run: |
4040
export GUIDELLM_BUILD_TYPE=candidate

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ${{ matrix.python }}
3434
- name: Install dependencies
3535
run: |
36-
uv pip install tox tox-pdm
36+
uv pip install --system tox tox-pdm
3737
- name: Build the package
3838
run: |
3939
export GUIDELLM_BUILD_TYPE=release

0 commit comments

Comments
 (0)