Skip to content

Commit

Permalink
Stick with 'python' instead of 'python3'
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperCraeghs committed Jul 3, 2024
1 parent 865e49b commit 7f2abb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ jobs:
python-version: '3.12'
- name: Install dependencies
run: |
python3 -m pip install --upgrade build twine
python -m pip install --upgrade build twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m build
python -m build
twine upload dist/*

0 comments on commit 7f2abb3

Please sign in to comment.