@@ -105,7 +105,7 @@ jobs:
105
105
- " 3.8"
106
106
- " 3.9"
107
107
- " 3.10"
108
- - " 3.11.0-rc.2 "
108
+ - " 3.11"
109
109
os : [ubuntu-20.04, macos-latest]
110
110
exclude :
111
111
- os : macos-latest
@@ -131,7 +131,7 @@ jobs:
131
131
- name : Get pip cache dir
132
132
id : pip-cache
133
133
run : |
134
- echo "::set-output name= dir:: $(pip cache dir)"
134
+ echo "dir= $(pip cache dir)" >>$GITHUB_OUTPUT
135
135
136
136
- name : pip cache
137
137
uses : actions/cache@v2
@@ -154,8 +154,8 @@ jobs:
154
154
pip install -U pip
155
155
pip install -U setuptools wheel twine cffi
156
156
157
- - name : Build zope.interface (3.11.0-rc.2 )
158
- if : ${{ startsWith(matrix.python-version, '3.11.0-rc.2 ') }}
157
+ - name : Build zope.interface (3.11)
158
+ if : ${{ startsWith(matrix.python-version, '3.11') }}
159
159
run : |
160
160
# Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure
161
161
# output (pip install uses a random temporary directory, making this difficult).
@@ -210,7 +210,7 @@ jobs:
210
210
&& startsWith(github.ref, 'refs/tags')
211
211
&& startsWith(runner.os, 'Mac')
212
212
&& !startsWith(matrix.python-version, 'pypy')
213
- && !startsWith(matrix.python-version, '3.11.0-rc.2 ')
213
+ && !startsWith(matrix.python-version, '3.11')
214
214
env :
215
215
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
216
216
run : |
@@ -232,7 +232,7 @@ jobs:
232
232
- " 3.8"
233
233
- " 3.9"
234
234
- " 3.10"
235
- - " 3.11.0-rc.2 "
235
+ - " 3.11"
236
236
os : [ubuntu-20.04, macos-latest]
237
237
exclude :
238
238
- os : macos-latest
@@ -258,7 +258,7 @@ jobs:
258
258
- name : Get pip cache dir
259
259
id : pip-cache
260
260
run : |
261
- echo "::set-output name= dir:: $(pip cache dir)"
261
+ echo "dir= $(pip cache dir)" >>$GITHUB_OUTPUT
262
262
263
263
- name : pip cache
264
264
uses : actions/cache@v2
@@ -335,7 +335,7 @@ jobs:
335
335
- name : Get pip cache dir
336
336
id : pip-cache
337
337
run : |
338
- echo "::set-output name= dir:: $(pip cache dir)"
338
+ echo "dir= $(pip cache dir)" >>$GITHUB_OUTPUT
339
339
340
340
- name : pip cache
341
341
uses : actions/cache@v2
@@ -386,7 +386,7 @@ jobs:
386
386
- name : Get pip cache dir
387
387
id : pip-cache
388
388
run : |
389
- echo "::set-output name= dir:: $(pip cache dir)"
389
+ echo "dir= $(pip cache dir)" >>$GITHUB_OUTPUT
390
390
391
391
- name : pip cache
392
392
uses : actions/cache@v2
@@ -439,7 +439,7 @@ jobs:
439
439
- name : Get pip cache dir
440
440
id : pip-cache
441
441
run : |
442
- echo "::set-output name= dir:: $(pip cache dir)"
442
+ echo "dir= $(pip cache dir)" >>$GITHUB_OUTPUT
443
443
444
444
- name : pip cache
445
445
uses : actions/cache@v2
0 commit comments