Skip to content

Commit

Permalink
Merge pull request #3 from zopefoundation/add-py35-support
Browse files Browse the repository at this point in the history
Add support for Python 3.5.
  • Loading branch information
tseaver committed Apr 13, 2016
2 parents bccaf24 + 8fa8a27 commit a54d1dc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -4,12 +4,13 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install .
- pip install zope.dublincore[test]
script:
- python setup.py test -q
- python setup.py -q test -q
notifications:
email: false
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.

- Convert doctests to Sphinx, including building docs and testing doctest
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -71,6 +71,7 @@ def alltests():
'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',
'Topic :: Internet :: WWW/HTTP',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,pypy,pypy3,coverage,docs
py27,py33,py34,py35,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit a54d1dc

Please sign in to comment.