Skip to content

Commit

Permalink
Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
christianversloot committed Nov 30, 2020
1 parent 4d80446 commit b27bcc7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools --upgrade --force
pip install wheel --upgrade --force
pip install twine --upgrade --force
pip install setuptools wheel twine --upgrade --force
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
python3 setup.py sdist bdist_wheel
twine upload dist/*

0 comments on commit b27bcc7

Please sign in to comment.