Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Python 3.9. #222

Merged
merged 5 commits into from Nov 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .manylinux-install.sh
Expand Up @@ -8,7 +8,8 @@ for PYBIN in /opt/python/*/bin; do
[[ "${PYBIN}" == *"cp35"* ]] || \
[[ "${PYBIN}" == *"cp36"* ]] || \
[[ "${PYBIN}" == *"cp37"* ]] || \
[[ "${PYBIN}" == *"cp38"* ]]; then
[[ "${PYBIN}" == *"cp38"* ]] || \
[[ "${PYBIN}" == *"cp39"* ]]; then
"${PYBIN}/pip" install -e /io/
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
if [ `uname -m` == 'aarch64' ]; then
Expand Down
10 changes: 8 additions & 2 deletions .travis.yml
@@ -1,5 +1,5 @@
language: python

dist: focal
env:
global:
ZOPE_INTERFACE_STRICT_IRO: 1
Expand All @@ -13,7 +13,8 @@ python:
- 3.6
- 3.7
- 3.8
- pypy
- 3.9
- pypy2
- pypy3

jobs:
Expand Down Expand Up @@ -47,6 +48,7 @@ jobs:
script: bash .manylinux.sh

- name: aarch64 wheels
dist: bionic
group: edge
arch: arm64
virt: lxd
Expand Down Expand Up @@ -82,6 +84,10 @@ jobs:
os: osx
language: generic
env: TERRYFY_PYTHON='macpython 3.8.0'
- name: Python 3.9 wheels for MacOS
os: osx
language: generic
env: TERRYFY_PYTHON='macpython 3.9.0'

before_install:
- |
Expand Down
6 changes: 5 additions & 1 deletion CHANGES.rst
Expand Up @@ -2,12 +2,16 @@
Changes
=========

5.1.3 (unreleased)
5.2.0 (unreleased)
==================

- Add documentation section ``Persistency and Equality``
(`#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_).

- Create arm64 wheels.

- Add support for Python 3.9.


5.1.2 (2020-10-01)
==================
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -15,6 +15,8 @@ environment:
- python: 37-x64
- python: 38
- python: 38-x64
- python: 39
- python: 39-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
Expand Down
210 changes: 0 additions & 210 deletions bootstrap.py

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -100,7 +100,7 @@ def read(*rnames):
)

setup(name='zope.interface',
version='5.1.3.dev0',
version='5.2.0.dev0',
url='https://github.com/zopefoundation/zope.interface',
license='ZPL 2.1',
description='Interfaces for Python',
Expand Down
13 changes: 11 additions & 2 deletions tox.ini
@@ -1,6 +1,15 @@
[tox]
envlist =
py27,py27-pure,py35,py35-pure,py36,py37,py38,py38-cext,pypy,pypy3,coverage,docs
py27,py27-pure,
py35,py35-pure,
py36,
py37,
py38,py38-cext,
py39,
pypy,
pypy3,
coverage,
docs
# NB: if you add new environments, please also add them to depends in
# testenv:coverage so that parallel runs (tox -p auto) will work correctly

Expand Down Expand Up @@ -44,7 +53,7 @@ commands =
coverage report -i
coverage html -i
coverage xml -i
depends = py27,py27-pure,py35,py35-pure,py36,py37,py38,py38-cext,pypy,pypy3,docs
depends = py27,py27-pure,py35,py35-pure,py36,py37,py38,py38-cext,py39,pypy,pypy3,docs
parallel_show_output = true

[testenv:docs]
Expand Down