diff options
| author | Marius Gedminas <marius@gedmin.as> | 2015-11-03 19:10:52 +0200 |
|---|---|---|
| committer | Marius Gedminas <marius@gedmin.as> | 2015-11-03 19:10:52 +0200 |
| commit | d4475db898a8a18a498bb77abd6f3e8b65bd64c2 (patch) | |
| tree | 37c98051f67ad3cb15c66f45c1dd1ebf6fd0e3ad | |
| parent | baa6844f11f3f3e30d3fafe3e586c0f096196831 (diff) | |
| parent | 5d702c2b26f5906294134b2c973b8831785b0ed7 (diff) | |
| download | zope-interface-d4475db898a8a18a498bb77abd6f3e8b65bd64c2.tar.gz | |
Merge pull request #26 from felixonmars/master
Note explicit support for Python 3.5
| -rw-r--r-- | .travis.yml | 3 | ||||
| -rw-r--r-- | setup.py | 1 | ||||
| -rw-r--r-- | tox.ini | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 0bb0ce3..f7501ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,10 +6,11 @@ python: - 3.2 - 3.3 - 3.4 + - 3.5 - pypy - pypy3 install: - - pip install . --use-mirrors + - pip install . script: - python setup.py test -q notifications: @@ -133,6 +133,7 @@ setup(name='zope.interface', "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Framework :: Zope3", @@ -1,6 +1,6 @@ [tox] envlist = - py26,py27,py32,py33,py34,pypy,pypy3,coverage,docs + py26,py27,py32,py33,py34,py35,pypy,pypy3,coverage,docs [testenv] commands = |
