Skip to content

Commit

Permalink
fix package wheels (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
groodt committed Jun 28, 2022
1 parent dc57d97 commit fe3d847
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,17 @@ jobs:
needs: pre-deploy
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Make sdist
run:
- name: Make distributions (sdist and wheel)
run: |
python -c "import sys; print(f'Python version: {sys.version}')"
python -m pip install -U setuptools pip wheel
python setup.py sdist bdist_wheel
- name: Upload artifacts
uses: actions/upload-artifact@v2
Expand All @@ -91,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install twine
Expand Down

0 comments on commit fe3d847

Please sign in to comment.