Skip to content

Commit 2868a62

Browse files
committed
Specify python3 in pypi-release.yml
Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent fc62e9b commit 2868a62

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pypi-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ jobs:
6161
uses: actions/setup-python@v5
6262

6363
- name: Install cibuildwheel, twine, pkginfo, and packaging
64-
run: python -m pip install --user --upgrade cibuildwheel twine pkginfo packaging
64+
run: python3 -m pip install --user --upgrade cibuildwheel twine pkginfo packaging
6565

6666
- name: Build wheels
67-
run: python -m cibuildwheel --output-dir dist/
67+
run: python3 -m cibuildwheel --output-dir dist/
6868

6969
- name: Validate wheels for Pypi
70-
run: python -m twine check dist/*
70+
run: python3 -m twine check dist/*
7171

7272
- name: Upload wheels
7373
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)