We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54dbc53 commit aa540ddCopy full SHA for aa540dd
.github/workflows/main.yml
@@ -21,7 +21,7 @@ jobs:
21
steps:
22
- uses: actions/checkout@v2
23
with:
24
- fetch-depth: 0 # unshallow checkout enables setuptools_scm to infer PyPi version from Git tags
+ fetch-depth: 0 # unshallow checkout enables setuptools_scm to infer PyPi version from Git
25
26
- name: Set up Python
27
uses: actions/setup-python@v2
@@ -30,11 +30,11 @@ jobs:
30
31
- name: Install dependencies
32
run: |
33
- python -m pip install --upgrade pip
34
- pip install build
+ python3 -m pip install --upgrade pip
+ pip3 install build
35
36
- name: Build Package
37
- run: python -m build
+ run: python3 -m build
38
39
- name: Publish Test Package
40
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
0 commit comments