17
17
- uses : actions/setup-python@v4
18
18
name : Install Python
19
19
with :
20
- python-version : ' 3.10 '
20
+ python-version : ' 3.11 '
21
21
22
22
- name : Build sdist
23
23
run : |
50
50
- os : windows-latest
51
51
python : 310
52
52
platform_id : win32
53
+ - os : windows-latest
54
+ python : 311
55
+ platform_id : win32
53
56
54
57
# Windows 64 bit
55
58
- os : windows-latest
64
67
- os : windows-latest
65
68
python : 310
66
69
platform_id : win_amd64
70
+ - os : windows-latest
71
+ python : 311
72
+ platform_id : win_amd64
67
73
68
74
# Linux 64 bit manylinux2010
69
75
- os : ubuntu-latest
@@ -96,6 +102,10 @@ jobs:
96
102
python : 310
97
103
platform_id : manylinux_x86_64
98
104
manylinux_image : manylinux2014
105
+ - os : ubuntu-latest
106
+ python : 311
107
+ platform_id : manylinux_x86_64
108
+ manylinux_image : manylinux2014
99
109
100
110
# Linux aarch64
101
111
- os : ubuntu-latest
@@ -110,6 +120,9 @@ jobs:
110
120
- os : ubuntu-latest
111
121
python : 310
112
122
platform_id : manylinux_aarch64
123
+ - os : ubuntu-latest
124
+ python : 311
125
+ platform_id : manylinux_aarch64
113
126
114
127
# MacOS x86_64
115
128
- os : macos-latest
@@ -124,6 +137,9 @@ jobs:
124
137
- os : macos-latest
125
138
python : 310
126
139
platform_id : macosx_x86_64
140
+ - os : macos-latest
141
+ python : 311
142
+ platform_id : macosx_x86_64
127
143
128
144
# MacOS arm64
129
145
- os : macos-latest
@@ -135,6 +151,9 @@ jobs:
135
151
- os : macos-latest
136
152
python : 310
137
153
platform_id : macosx_arm64
154
+ - os : macos-latest
155
+ python : 311
156
+ platform_id : macosx_arm64
138
157
139
158
steps :
140
159
- uses : actions/checkout@v3
@@ -155,7 +174,7 @@ jobs:
155
174
- name : Install cibuildwheel
156
175
run : |
157
176
python -m pip install -U pip
158
- python -m pip install cibuildwheel==2.3.1
177
+ python -m pip install cibuildwheel==2.12.0
159
178
160
179
- name : Build wheels
161
180
env :
@@ -183,7 +202,7 @@ jobs:
183
202
strategy :
184
203
fail-fast : false
185
204
matrix :
186
- python-version : ['3.7', '3.8', '3.9', '3.10']
205
+ python-version : ['3.7', '3.8', '3.9', '3.10', '3.11' ]
187
206
188
207
steps :
189
208
- name : Set up Python ${{ matrix.python-version }}
0 commit comments