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 14, 2016
1 parent 220b31a commit 0a4c406
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
language: python
sudo: false
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install tox
- pip install tox-travis
script:
- tox --develop
- tox
notifications:
email: false
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changes
2.1.0 (unreleased)
------------------

- Add support for Python 3.5.

- Drop support for Python 2.6.


Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,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',
'Natural Language :: English',
'Operating System :: OS Independent',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist =
py27,py33,py34
py27,py33,py34,py35

[testenv]
commands =
python setup.py test -q
python setup.py -q test -q
# without explicit deps, setup.py test will download a bunch of eggs into $PWD
# (and it seems I can't use zope.dottedname[testing] here, so forget DRY)
deps =
Expand Down

0 comments on commit 0a4c406

Please sign in to comment.