Skip to content

Commit 70c0e0b

Browse files
authored
Update test-upload.yml
1 parent 2838b18 commit 70c0e0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-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
@@ -69,7 +69,7 @@ jobs:
6969
uses: actions/checkout@v4
7070

7171
- name: Install cibuildwheel
72-
run: pip install --upgrade pip && pip install cibuildwheel
72+
run: python -m pip install --upgrade pip && pip install cibuildwheel
7373

7474
- name: Build wheels (svv-accelerated)
7575
run: cibuildwheel --output-dir dist
@@ -91,7 +91,7 @@ jobs:
9191
path: dist
9292
merge-multiple: true
9393
- name: Install twine
94-
run: pip install --upgrade pip && pip install twine
94+
run: python -m pip install --upgrade pip && pip install twine
9595
- name: Validate TestPyPI token (svv)
9696
if: ${{ hashFiles('dist/svv-*-py3-none-any.whl') != '' || hashFiles('dist/svv-*.tar.gz') != '' }}
9797
run: |

0 commit comments

Comments
 (0)