Skip to content

Commit 2e8e232

Browse files
authored
Fix pip update for windows workflow (#2381)
1 parent 79e8cd8 commit 2e8e232

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/test_cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Install dependencies
5050
run: |
51-
pip install --upgrade pip uv
51+
python -m pip install --upgrade pip uv
5252
uv pip install ./optimum-onnx[onnxruntime]
5353
uv pip install ./optimum[tests]
5454

.github/workflows/test_common.yml

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

3838
- name: Install dependencies
3939
run: |
40-
pip install --upgrade pip uv
40+
python -m pip install --upgrade pip uv
4141
uv pip install .[tests]
4242
4343
- name: Test with pytest

.github/workflows/test_exporters_common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Install dependencies
5050
run: |
51-
pip install --upgrade pip uv
51+
python -m pip install --upgrade pip uv
5252
uv pip install ./optimum-onnx
5353
uv pip install ./optimum[tests]
5454

.github/workflows/test_pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Install dependencies
5050
run: |
51-
pip install --upgrade pip uv
51+
python -m pip install --upgrade pip uv
5252
uv pip install ./optimum-onnx[onnxruntime]
5353
uv pip install ./optimum[tests]
5454

.github/workflows/test_utils.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Install dependencies
3838
run: |
39-
pip install --upgrade pip uv
39+
python -m pip install --upgrade pip uv
4040
uv pip install .[tests]
4141
4242
- name: Tests needing datasets

0 commit comments

Comments
 (0)