Skip to content

Commit

Permalink
Support Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Dec 29, 2016
1 parent 8273a2b commit b5f3815
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,7 @@ python:
- 3.3
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
install:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,7 @@ Changes
4.7.0 (unreleased)
------------------

- Nothing changed yet.
- Add support for Python 3.6.


4.6.0 (2016-10-20)
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -9,6 +9,8 @@ environment:
- python : 34-x64
- python : 35
- python : 35-x64
- python : 36
- python : 36-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -82,6 +82,7 @@ def read(*rnames):
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
"Framework :: Zope3",
Expand Down
2 changes: 2 additions & 0 deletions src/zope/testing/tests.py
Expand Up @@ -31,7 +31,9 @@ def test_suite():
'module.txt',
# Python 3.3 changed exception messaging:
# https://bugs.launchpad.net/zope.testing/+bug/1055720
# and then Python 3.6 introduced ImportError subclasses
checker=renormalizing.RENormalizing([
(re.compile('ModuleNotFoundError:'), 'ImportError:'),
(re.compile(
"No module named '?zope.testing.unlikelymodulename'?"),
'No module named unlikelymodulename'),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35,pypy,pypy3
py27,py33,py34,py35,py36,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit b5f3815

Please sign in to comment.