Skip to content

Commit

Permalink
Python 3.10 (#103)
Browse files Browse the repository at this point in the history
* py310

* string
  • Loading branch information
tommyod committed Jan 16, 2022
1 parent cf6023d commit a8a971a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false # Allow one of the matrix builds to fail without failing others
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']


# The job
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build wheels (non-windows) ${{ matrix.python-version }} on ${{ matrix.os }}
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.9' && matrix.os != 'windows-latest'
env:
CIBW_BUILD: 'cp36-* cp37-* cp38-* cp39-*'
CIBW_BUILD: 'cp36-* cp37-* cp38-* cp39-* cp310-*'
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install cibuildwheel twine --upgrade;
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Build wheels (windows) ${{ matrix.python-version }} on ${{ matrix.os }}
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.9' && matrix.os == 'windows-latest'
env:
CIBW_BUILD: 'cp36-* cp37-* cp38-* cp39-*'
CIBW_BUILD: 'cp36-* cp37-* cp38-* cp39-* cp310-*'
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
pip install cibuildwheel twine --upgrade;
Expand Down

0 comments on commit a8a971a

Please sign in to comment.