Skip to content

Commit

Permalink
Merge pull request #2 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 14, 2016
2 parents 9eaaf15 + 8dce926 commit 4a9573c
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,11 +4,12 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install .
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
2.2.0 (unreleased)
------------------

- Add support for Python 3.5.

- Drop support for Python 2.6.

- Bring unit test coverage to 100% (including branches).
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -55,6 +55,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',
'Topic :: Internet :: WWW/HTTP',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@ envlist =

[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 4a9573c

Please sign in to comment.