Skip to content

Commit

Permalink
Remove __future__ imports and add Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Apr 21, 2017
1 parent a34d536 commit 4406046
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ sudo: false
python:
- 2.7
- pypy-5.4.1
- 3.4
- 3.5
- 3.6
install:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.txt
Expand Up @@ -5,7 +5,7 @@ CHANGES
4.0.0 (unreleased)
------------------

- Add support for Python 3.5 and 3.6.
- Add support for Python 3.4, 3.5, and 3.6.
- Add support for PyPy.


Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -45,6 +45,7 @@ def read(*rnames):
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python:: 2.7',
'Programming Language :: Python:: 3.4',
'Programming Language :: Python:: 3.5',
'Programming Language :: Python:: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/basicskin/standardmacros.py
Expand Up @@ -15,7 +15,7 @@
The macros are drawn from various different page templates.
"""
from __future__ import print_function, absolute_import, division


__docformat__ = 'restructuredtext'

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27, pypy, py35, py36
py27, pypy, py34, py35, py36

[testenv]
commands =
Expand Down

0 comments on commit 4406046

Please sign in to comment.