Skip to content

Commit 517a5fb

Browse files
committed
Add wheel builds for Python 3.10
1 parent 38c891f commit 517a5fb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/upload_pypi.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
max-parallel: 4
1212
fail-fast: false
1313
matrix:
14-
python-version: [3.7, 3.8, 3.9]
15-
platform: [macos-latest, windows-latest] # No wheels on linux yet
14+
python-version: [3.7, 3.8, 3.9, 3.10]
15+
platform: [macos-latest, windows-latest] # Wheels on linux below
1616
runs-on: ${{ matrix.platform }}
1717

1818
steps:
@@ -55,9 +55,9 @@ jobs:
5555
python -m pip install --upgrade pip
5656
pip install twine
5757
- name: Python wheels manylinux build
58-
uses: RalfG/python-wheels-manylinux-build@v0.3.4
58+
uses: RalfG/python-wheels-manylinux-build@v0.4.0
5959
with:
60-
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38'
60+
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
6161
build-requirements: 'setuptools cython'
6262
- name: Build and publish wheel
6363
env:
@@ -73,7 +73,7 @@ jobs:
7373
- name: Set up Python
7474
uses: actions/setup-python@v1
7575
with:
76-
python-version: '3.8'
76+
python-version: '3.10'
7777
- name: Install dependencies
7878
run: |
7979
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)