Skip to content

Commit 27e861f

Browse files
committed
Enable Python 3.10 in CI.
Fix #935.
1 parent c70c7d6 commit 27e861f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Python 3.x
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.9.6
21+
python-version: "3.9.6"
2222
- name: Install tox
2323
run: pip install tox
2424
- name: Run tests with coverage
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
strategy:
4040
matrix:
41-
python: [3.7, 3.8, 3.9.6]
41+
python: ["3.7", "3.8", "3.9.6", "3.10"]
4242
steps:
4343
- name: Check out repository
4444
uses: actions/checkout@v2

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: joerick/cibuildwheel@v1.11.0
5151
env:
5252
CIBW_ARCHS_LINUX: auto aarch64
53-
CIBW_BUILD: cp37-* cp38-* cp39-*
53+
CIBW_SKIP: cp36-*
5454
- name: Save wheels
5555
uses: actions/upload-artifact@v2
5656
with:

0 commit comments

Comments
 (0)