Skip to content

Commit 5e9f231

Browse files
jgreer013oelachqar
andauthored
Update uv pip install commands to include --system (#1979)
Co-authored-by: Oussama Elachqar <oelachqar@users.noreply.github.com>
1 parent 6eb9b03 commit 5e9f231

File tree

128 files changed

+191
-194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+191
-194
lines changed

.github/workflows/doctests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
# Install in system python as we're in a sandbox env
3939
# Install in verbose mode to see what's going on
40-
uv pip install -e '.[ci_cpu]' --system
40+
uv pip install --system -e '.[ci_cpu]'
4141
4242
- name: Cache pre-commit
4343
uses: actions/cache@v4

.github/workflows/gpu_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
# Install in system python as we're in a sandbox env
5656
# Install in verbose mode to see what's going on
57-
uv pip install -e '.[ci_gpu]' hf_transfer --system
57+
uv pip install --system -e '.[ci_gpu]' hf_transfer
5858
5959
- name: Download Test Data
6060
run: |

.github/workflows/pretest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
# Install in system python as we're in a sandbox env
4747
# Install in verbose mode to see what's going on
48-
uv pip install -e '.[ci_cpu]' --system
48+
uv pip install --system -e '.[ci_cpu]'
4949
5050
- name: Cache pre-commit
5151
uses: actions/cache@v4

configs/examples/berry_bench/evaluation/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ envs:
3737

3838
setup: |
3939
set -e
40-
pip install uv && uv pip install oumi[gpu]
40+
pip install uv && uv pip install --system oumi[gpu]
4141
4242
run: |
4343
set -e # Exit if any command failed.

configs/examples/bulk_inference/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ envs:
4646

4747
setup: |
4848
set -e
49-
pip install uv && uv pip install oumi[gpu]
49+
pip install uv && uv pip install --system oumi[gpu]
5050
5151
run: |
5252
set -e # Exit if any command failed.

configs/examples/fineweb_ablation_pretraining/ddp/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ envs:
3131

3232
setup: |
3333
set -e
34-
pip install uv && uv pip install oumi[gpu]
34+
pip install uv && uv pip install --system oumi[gpu]
3535
3636
run: |
3737
set -e # Exit if any command failed.

configs/examples/fineweb_ablation_pretraining/fsdp/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ envs:
3131

3232
setup: |
3333
set -e
34-
pip install uv && uv pip install oumi[gpu]
34+
pip install uv && uv pip install --system oumi[gpu]
3535
3636
run: |
3737
set -e # Exit if any command failed.

configs/examples/grpo_tldr/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ envs:
3131

3232
setup: |
3333
set -e
34-
pip install uv && uv pip install oumi[gpu]
34+
pip install uv && uv pip install --system oumi[gpu]
3535
3636
run: |
3737
set -e # Exit if any command failed.

configs/examples/grpo_verl_countdown/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ envs:
3333

3434
setup: |
3535
set -e
36-
pip install uv && uv pip install oumi[gpu]
36+
pip install uv && uv pip install --system oumi[gpu]
3737
pip install -U flash-attn --no-build-isolation
3838
3939
run: |

configs/examples/grpo_verl_geometry3k/gcp_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ envs:
3535

3636
setup: |
3737
set -e
38-
pip install uv && uv pip install oumi[gpu] huggingface_hub[hf_xet] mathruler
38+
pip install uv && uv pip install --system oumi[gpu] huggingface_hub[hf_xet] mathruler
3939
# TODO: OPE-1331 - Fix bug that lets us upgrade to verl 0.4.0.
4040
# Note that qwen_vl_utils needs to manually installed.
4141
# In the meantime, we need to use this specific commit to support vLLM 0.8.3:

0 commit comments

Comments
 (0)