Skip to content

Commit d672d91

Browse files
committed
- prepare release 5.5.1
1 parent 391db8a commit d672d91

File tree

7 files changed

+7
-27
lines changed

7 files changed

+7
-27
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -154,16 +154,6 @@ jobs:
154154
pip install -U pip
155155
pip install -U setuptools wheel twine cffi
156156
157-
- name: Build zope.interface (3.11)
158-
if: ${{ startsWith(matrix.python-version, '3.11') }}
159-
run: |
160-
# Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure
161-
# output (pip install uses a random temporary directory, making this difficult).
162-
python setup.py build_ext -i
163-
python setup.py bdist_wheel
164-
# Also install it, so that we get dependencies in the (pip) cache.
165-
pip install -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"'
166-
pip install --pre .[test]
167157
- name: Build zope.interface (Python 3.10 on MacOS)
168158
if: >
169159
startsWith(runner.os, 'Mac')
@@ -210,7 +200,6 @@ jobs:
210200
&& startsWith(github.ref, 'refs/tags')
211201
&& startsWith(runner.os, 'Mac')
212202
&& !startsWith(matrix.python-version, 'pypy')
213-
&& !startsWith(matrix.python-version, '3.11')
214203
env:
215204
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
216205
run: |

.manylinux-install.sh

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ tox_env_map() {
3030
case $1 in
3131
*"cp27"*) echo 'py27';;
3232
*"cp35"*) echo 'py35';;
33-
*"cp311"*) echo 'py311';;
3433
*"cp36"*) echo 'py36';;
3534
*"cp37"*) echo 'py37';;
3635
*"cp38"*) echo 'py38';;
3736
*"cp39"*) echo 'py39';;
3837
*"cp310"*) echo 'py310';;
38+
*"cp311"*) echo 'py311';;
3939
*) echo 'py';;
4040
esac
4141
}
@@ -51,13 +51,8 @@ for PYBIN in /opt/python/*/bin; do
5151
[[ "${PYBIN}" == *"cp38"* ]] || \
5252
[[ "${PYBIN}" == *"cp39"* ]] || \
5353
[[ "${PYBIN}" == *"cp310"* ]] ; then
54-
if [[ "${PYBIN}" == *"cp311"* ]] ; then
55-
"${PYBIN}/pip" install --pre -e /io/
56-
"${PYBIN}/pip" wheel /io/ --pre -w wheelhouse/
57-
else
58-
"${PYBIN}/pip" install -e /io/
59-
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
60-
fi
54+
"${PYBIN}/pip" install -e /io/
55+
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
6156
if [ `uname -m` == 'aarch64' ]; then
6257
cd /io/
6358
${PYBIN}/pip install tox

.meta.toml

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

77
[python]
88
with-appveyor = true
99
with-pypy = true
1010
with-legacy-python = true
1111
with-sphinx-doctests = true
1212
with-windows = false
13-
with-future-python = true
13+
with-future-python = false
1414
with-docs = true
1515

1616
[tox]

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changes
33
=========
44

5-
5.5.1 (unreleased)
5+
5.5.1 (2022-11-03)
66
==================
77

88
- Add support for final Python 3.11 release.

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ environment:
2424
- python: 39-x64
2525
- python: 310
2626
- python: 310-x64
27-
# `multibuild` cannot install non-final versions as they are not on
28-
# ftp.python.org, so we skip Python 3.11 until its final release:
2927
- python: 311
3028
- python: 311-x64
3129

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def read(*rnames):
100100
)
101101

102102
setup(name='zope.interface',
103-
version='5.5.1.dev0',
103+
version='5.5.1',
104104
url='https://github.com/zopefoundation/zope.interface',
105105
license='ZPL 2.1',
106106
description='Interfaces for Python',

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ envlist =
1919

2020
[testenv]
2121
usedevelop = true
22-
pip_pre = py311: true
2322
deps =
24-
Sphinx
2523
setenv =
2624
pure: PURE_PYTHON=1
2725
!pure-!pypy-!pypy3: PURE_PYTHON=0

0 commit comments

Comments
 (0)