Skip to content

Commit 119e485

Browse files
authored
Update upload.yml
1 parent 70c0e0b commit 119e485

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/upload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Install build dependencies
2424
run: |
25-
pip install --upgrade pip && pip install build
25+
python -m pip install --upgrade pip && pip install build
2626
2727
- name: Build base wheel (pure-Python svv)
2828
run: python -m build --wheel --outdir dist
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v4
5252

5353
- name: Install cibuildwheel
54-
run: pip install --upgrade pip && pip install cibuildwheel
54+
run: python -m pip install --upgrade pip && pip install cibuildwheel
5555

5656
- name: Build wheels (svv-accelerated)
5757
run: cibuildwheel --output-dir dist
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Install build dependencies
7272
run: |
73-
pip install --upgrade pip && pip install build
73+
python -m pip install --upgrade pip && pip install build
7474
7575
- name: Build sdist
7676
run: python -m build --sdist

0 commit comments

Comments
 (0)