From 6e09fee3a67116babff6d9b3182792499ec3fe83 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 5 Jan 2017 13:29:14 +0200 Subject: [PATCH] Claim support for Python 3.6 Add workaround for `tox -e py35,py36` (see #16). --- .travis.yml | 1 + CHANGES.rst | 2 +- setup.py | 1 + tox.ini | 5 ++++- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c75f7aa..4f6ff3e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - 3.3 - 3.4 - 3.5 + - 3.6 - pypy install: - pip install . diff --git a/CHANGES.rst b/CHANGES.rst index 1e504cd..b21324c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,7 +6,7 @@ Changes - Drop support for Python 2.6 and 3.2. -- Add support for Python 3.5. +- Add support for Python 3.5 and 3.6. 4.0.3 (2014-03-19) ------------------ diff --git a/setup.py b/setup.py index ec41a0b..3adb48b 100644 --- a/setup.py +++ b/setup.py @@ -81,6 +81,7 @@ def emit(self, record): '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', 'Natural Language :: English', diff --git a/tox.ini b/tox.ini index 2e48e59..190f97a 100644 --- a/tox.ini +++ b/tox.ini @@ -3,9 +3,12 @@ envlist = # Jython support pending 2.7 support, due 2012-07-15 or so. See: # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html # py27,py33,py34,py35,jython,pypy,coverage,docs - py27,py33,py34,py35,pypy,coverage,docs + py27,py33,py34,py35,py36,pypy,coverage,docs [testenv] +# see https://github.com/zopefoundation/zope.configuration/issues/16 for +# the reason we set usedevelop here +usedevelop = true deps = zope.event zope.i18nmessageid