Skip to content

Commit 892637f

Browse files
Fix Python
1 parent b27bcc7 commit 892637f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: '3.x'
19+
python-version: '3.7'
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2727
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2828
run: |
29-
python3 setup.py sdist bdist_wheel
29+
python setup.py sdist bdist_wheel
3030
twine upload dist/*

0 commit comments

Comments
 (0)