Skip to content

Commit d49d1d8

Browse files
ci: remove --system from pip install
1 parent 33e5908 commit d49d1d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cache-dependency-glob: |
3131
**/setup.py
3232
**/requirements*.txt
33-
- run: uv pip install --upgrade --system setuptools pip tox virtualenv
33+
- run: uv pip install --upgrade setuptools pip tox virtualenv
3434
# Run tox only for the installed py version on the runner as outlined in the python matrix
3535
# Ensures the correct py version is installed and tested as opposed to 'tox' which attempts to run for all py versions in tox.ini
3636
- run: uv run tox -e py

.github/workflows/pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
cache-dependency-glob: |
2626
**/setup.py
2727
**/requirements*.txt
28-
- run: uv pip install --upgrade --system setuptools pip tox virtualenv
28+
- run: uv pip install --upgrade setuptools pip tox virtualenv
2929
# Run tox only for the installed py version on the runner as outlined in the python matrix
3030
# Ensures the correct py version is installed and tested as opposed to 'tox' which attempts to run for all py versions in tox.ini
3131
- run: uv run tox -e py

0 commit comments

Comments
 (0)