Skip to content

Commit

Permalink
Merge pull request #5 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 15, 2016
2 parents effaaf9 + f7f2a5b commit aaff859
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,7 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
install:
- pip install .
Expand Down
8 changes: 5 additions & 3 deletions CHANGES.rst
Expand Up @@ -4,11 +4,13 @@ Changes
4.1.0 (unreleased)
------------------

- Add support for Python 3.5.

- Drop support for Python 2.6.

- Deprecate ``zope.site.hooks.*``, ``zope.site.site.setSite``, ``zope.site.next.getNextUtility`` and ``zope.site.next.queryNextUtility`` with ``zope.deprecation``.
These will be removed in zope.site Version 5.0.
[thet]
- Deprecate ``zope.site.hooks.*``, ``zope.site.site.setSite``,
``zope.site.next.getNextUtility`` and ``zope.site.next.queryNextUtility``
with ``zope.deprecation``. These will be removed in version 5.0.


4.0.0 (2014-12-24)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -67,6 +67,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
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,10 +1,10 @@
[tox]
envlist =
py27,py33,py34,pypy
py27,py33,py34,py35,pypy

[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 aaff859

Please sign in to comment.