Skip to content

Commit 21c7a33

Browse files
committed
Add Python 3.11 to GHA
1 parent fa62ec8 commit 21c7a33

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/wheel.yml

Lines changed: 6 additions & 6 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.10
13+
name: Python 3.11
1414

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

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

2424
- name: Install test dependencies
@@ -87,9 +87,9 @@ jobs:
8787
- uses: actions/checkout@v2
8888

8989
- name: Setup Python
90-
uses: actions/setup-python@v2
90+
uses: actions/setup-python@v5
9191
with:
92-
python-version: "3.10"
92+
python-version: "3.11"
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@v2.1.3
111+
uses: joerick/cibuildwheel@v2.11.2
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
@@ -91,7 +91,8 @@
9191
'Programming Language :: Python :: 3.7',
9292
'Programming Language :: Python :: 3.8',
9393
'Programming Language :: Python :: 3.9',
94-
'Programming Language :: Python :: 3.10'
94+
'Programming Language :: Python :: 3.10',
95+
'Programming Language :: Python :: 3.11'
9596
],
9697
ext_modules=ext_modules,
9798
packages=packages,

0 commit comments

Comments
 (0)