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 05da517 commit 73659c8
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ sudo: false
python:
- 2.7
- pypy-5.4.1
- 3.4
- 3.5
- 3.6
install:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
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/pagetemplate/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
##############################################################################
"""Interfaces for apis to make available to TALES
"""
from __future__ import print_function, absolute_import, division

__docformat__ = 'restructuredtext'

import zope.interface
Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/pagetemplate/talesapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
$Id$
"""
from __future__ import print_function, absolute_import, division

__docformat__ = 'restructuredtext'

from zope.interface import implementer
Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/pagetemplate/tests/test_bwc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""
Tests for deprecated/backwards-compatibility imports.
"""
from __future__ import print_function, absolute_import, division


import unittest

Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/pagetemplate/tests/test_talesapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
##############################################################################
"""Tales API Tests
"""
from __future__ import print_function, absolute_import, division


from datetime import datetime
import unittest
Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/pagetemplate/tests/test_urlquote.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
to be functional to avoid test duplication.
"""
from __future__ import absolute_import, print_function, division

import unittest

from doctest import DocTestSuite
Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/pagetemplate/urlquote.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
##############################################################################
"""URL quoting for ZPT
"""
from __future__ import print_function, absolute_import, division

__docformat__ = 'restructuredtext'

import six
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27, pypy, py35, py36
py27, pypy, py34, py35, py36

[testenv]
commands =
Expand Down

0 comments on commit 73659c8

Please sign in to comment.