Skip to content

Commit aa540dd

Browse files
committed
explicitly use python3 in workflow for clarity's sake
1 parent 54dbc53 commit aa540dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v2
2323
with:
24-
fetch-depth: 0 # unshallow checkout enables setuptools_scm to infer PyPi version from Git tags
24+
fetch-depth: 0 # unshallow checkout enables setuptools_scm to infer PyPi version from Git
2525

2626
- name: Set up Python
2727
uses: actions/setup-python@v2
@@ -30,11 +30,11 @@ jobs:
3030

3131
- name: Install dependencies
3232
run: |
33-
python -m pip install --upgrade pip
34-
pip install build
33+
python3 -m pip install --upgrade pip
34+
pip3 install build
3535
3636
- name: Build Package
37-
run: python -m build
37+
run: python3 -m build
3838

3939
- name: Publish Test Package
4040
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29

0 commit comments

Comments
 (0)