Skip to content

Commit

Permalink
Merge pull request #20 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 4b71df1 + 878e126 commit 4472c69
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
19 changes: 8 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
language: python
sudo: false

env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=pypy3

python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- travis_retry pip install tox

- pip install tox-travis
script:
- tox

notifications:
email: false
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,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
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,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',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py33,py34,pypy,pypy3,coverage,docs
envlist = py27,py33,py34,py35,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit 4472c69

Please sign in to comment.