summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2015-11-03 19:10:52 +0200
committerMarius Gedminas <marius@gedmin.as>2015-11-03 19:10:52 +0200
commitd4475db898a8a18a498bb77abd6f3e8b65bd64c2 (patch)
tree37c98051f67ad3cb15c66f45c1dd1ebf6fd0e3ad
parentbaa6844f11f3f3e30d3fafe3e586c0f096196831 (diff)
parent5d702c2b26f5906294134b2c973b8831785b0ed7 (diff)
downloadzope-interface-d4475db898a8a18a498bb77abd6f3e8b65bd64c2.tar.gz
Merge pull request #26 from felixonmars/master
Note explicit support for Python 3.5
-rw-r--r--.travis.yml3
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
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:
diff --git a/setup.py b/setup.py
index be2f045..07c56e7 100644
--- a/setup.py
+++ b/setup.py
@@ -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",
diff --git a/tox.ini b/tox.ini
index 5d5c383..9ad1f08 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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 =