Skip to content

Commit

Permalink
Upload py39 to package index (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyod committed May 19, 2021
1 parent 00cc152 commit 5e37ade
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ jobs:
# ======================= BUILD WHEELS AND UPLOAD TO PYPI ==================================

- name: Build wheels (non-windows) ${{ matrix.python-version }} on ${{ matrix.os }}
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.8' && matrix.os != 'windows-latest'
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.9' && matrix.os != 'windows-latest'
env:
CIBW_BUILD: 'cp36-* cp37-* cp38-*'
CIBW_BUILD: 'cp36-* cp37-* cp38-* cp39-*'
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install cibuildwheel twine --upgrade;
python -m cibuildwheel --output-dir dist;
python -m twine upload dist/* -u tommyod -p "$PYPI_PASSWORD" --skip-existing;
- name: Build wheels (windows) ${{ matrix.python-version }} on ${{ matrix.os }}
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.8' && matrix.os == 'windows-latest'
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.9' && matrix.os == 'windows-latest'
env:
CIBW_BUILD: 'cp36-* cp37-* cp38-*'
CIBW_BUILD: 'cp36-* cp37-* cp38-* cp39-*'
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install cibuildwheel twine --upgrade;
Expand Down

0 comments on commit 5e37ade

Please sign in to comment.