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 e9bfa50 commit d603a95
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 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
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,17 @@ def read(*rnames):
'Intended Audience :: Developers',
'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',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope3'],
'Framework :: Zope3'
],
url='http://github.com/zopefoundation/zope.app.container',
license='ZPL 2.1',
packages=find_packages('src'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
##############################################################################
"""Functional tests for the Container's 'Contents' view
"""
from __future__ import print_function, absolute_import, division

import doctest
import unittest

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 d603a95

Please sign in to comment.