Skip to content

Commit 391db8a

Browse files
committed
- update to the latest meta/config and declare Python 3.11 support
1 parent d65b997 commit 391db8a

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- "3.8"
106106
- "3.9"
107107
- "3.10"
108-
- "3.11.0-rc.2"
108+
- "3.11"
109109
os: [ubuntu-20.04, macos-latest]
110110
exclude:
111111
- os: macos-latest
@@ -131,7 +131,7 @@ jobs:
131131
- name: Get pip cache dir
132132
id: pip-cache
133133
run: |
134-
echo "::set-output name=dir::$(pip cache dir)"
134+
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
135135
136136
- name: pip cache
137137
uses: actions/cache@v2
@@ -154,8 +154,8 @@ jobs:
154154
pip install -U pip
155155
pip install -U setuptools wheel twine cffi
156156
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') }}
159159
run: |
160160
# Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure
161161
# output (pip install uses a random temporary directory, making this difficult).
@@ -210,7 +210,7 @@ jobs:
210210
&& startsWith(github.ref, 'refs/tags')
211211
&& startsWith(runner.os, 'Mac')
212212
&& !startsWith(matrix.python-version, 'pypy')
213-
&& !startsWith(matrix.python-version, '3.11.0-rc.2')
213+
&& !startsWith(matrix.python-version, '3.11')
214214
env:
215215
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
216216
run: |
@@ -232,7 +232,7 @@ jobs:
232232
- "3.8"
233233
- "3.9"
234234
- "3.10"
235-
- "3.11.0-rc.2"
235+
- "3.11"
236236
os: [ubuntu-20.04, macos-latest]
237237
exclude:
238238
- os: macos-latest
@@ -258,7 +258,7 @@ jobs:
258258
- name: Get pip cache dir
259259
id: pip-cache
260260
run: |
261-
echo "::set-output name=dir::$(pip cache dir)"
261+
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
262262
263263
- name: pip cache
264264
uses: actions/cache@v2
@@ -335,7 +335,7 @@ jobs:
335335
- name: Get pip cache dir
336336
id: pip-cache
337337
run: |
338-
echo "::set-output name=dir::$(pip cache dir)"
338+
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
339339
340340
- name: pip cache
341341
uses: actions/cache@v2
@@ -386,7 +386,7 @@ jobs:
386386
- name: Get pip cache dir
387387
id: pip-cache
388388
run: |
389-
echo "::set-output name=dir::$(pip cache dir)"
389+
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
390390
391391
- name: pip cache
392392
uses: actions/cache@v2
@@ -439,7 +439,7 @@ jobs:
439439
- name: Get pip cache dir
440440
id: pip-cache
441441
run: |
442-
echo "::set-output name=dir::$(pip cache dir)"
442+
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
443443
444444
- name: pip cache
445445
uses: actions/cache@v2

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/config/c-code
33
[meta]
44
template = "c-code"
5-
commit-id = "b5df3766ff8923477f3d24729b19504f0c401a2e"
5+
commit-id = "70229255d495a945324228b50ee735cc75e01430"
66

77
[python]
88
with-appveyor = true

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
5.5.1 (unreleased)
66
==================
77

8-
- Nothing changed yet.
8+
- Add support for final Python 3.11 release.
99

1010

1111
5.5.0 (2022-10-10)

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ environment:
2626
- python: 310-x64
2727
# `multibuild` cannot install non-final versions as they are not on
2828
# ftp.python.org, so we skip Python 3.11 until its final release:
29-
# - python: 311
30-
# - python: 311-x64
29+
- python: 311
30+
- python: 311-x64
3131

3232
install:
3333
- "SET PYTHONVERSION=%PYTHON%"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ def read(*rnames):
122122
"Programming Language :: Python :: 3.8",
123123
"Programming Language :: Python :: 3.9",
124124
"Programming Language :: Python :: 3.10",
125+
"Programming Language :: Python :: 3.11",
125126
"Programming Language :: Python :: Implementation :: CPython",
126127
"Programming Language :: Python :: Implementation :: PyPy",
127128
"Framework :: Zope :: 3",

0 commit comments

Comments
 (0)