Skip to content

Commit 3e1c864

Browse files
authored
Merge pull request #117 from gliptak/python1
Add Python 3.10 to GHA
2 parents c3e314a + 11802f4 commit 3e1c864

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/wheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
sdist:
1111
runs-on: ubuntu-latest
1212

13-
name: Python 3.9
13+
name: Python 3.10
1414

1515
steps:
1616
- uses: actions/checkout@v2
1717

1818
- name: Setup Python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: "3.9"
21+
python-version: "3.10"
2222
architecture: x64
2323

2424
- name: Install test dependencies
@@ -89,7 +89,7 @@ jobs:
8989
- name: Setup Python
9090
uses: actions/setup-python@v2
9191
with:
92-
python-version: "3.9"
92+
python-version: "3.10"
9393
architecture: ${{ matrix.architecture }}
9494

9595
- name: Set up QEMU
@@ -108,7 +108,7 @@ jobs:
108108
python -m pip install delvewheel==0.0.9
109109
110110
- name: Build wheels
111-
uses: joerick/cibuildwheel@v1.12.0
111+
uses: joerick/cibuildwheel@v2.1.3
112112

113113
- uses: actions/upload-artifact@v2
114114
with:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@
9090
'Programming Language :: Python :: 3.6',
9191
'Programming Language :: Python :: 3.7',
9292
'Programming Language :: Python :: 3.8',
93-
'Programming Language :: Python :: 3.9'
93+
'Programming Language :: Python :: 3.9',
94+
'Programming Language :: Python :: 3.10'
9495
],
9596
ext_modules=ext_modules,
9697
packages=packages,

0 commit comments

Comments
 (0)