Skip to content

Commit

Permalink
Add support for Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Apr 12, 2016
1 parent 90a8f76 commit 9426375
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,8 @@ Changes
4.2.0 (unreleased)
------------------

- Add support for Python 3.5.

- Drop support for Python 2.6 and 3.2.


Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -42,6 +42,7 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'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',
'Operating System :: OS Independent',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist = py27,py33,py34,pypy,pypy3
envlist = py27,py33,py34,py35,pypy,pypy3

[testenv]
commands = python setup.py test -q
commands = python setup.py -q test -q
deps = zope.testrunner

0 comments on commit 9426375

Please sign in to comment.