Skip to content

Commit

Permalink
consistent python version support
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Oct 17, 2018
1 parent 723f085 commit f62bf5a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ python:
- 2.7
- 3.5
- 3.6
- 3.7
install:
- pip install -U setuptools zc.buildout
- buildout
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,8 @@ Changes
0.7.1 (unreleased)
------------------

- Port to Python 3 [ale-rt, pbauer]
- Added support for Python 3.5, 3.6, 3.7; dropped support for 2.6.
[ale-rt, pbauer]

- Standardize namespace __init__

Expand Down
18 changes: 11 additions & 7 deletions setup.py
Expand Up @@ -9,15 +9,19 @@
long_description=(open('README.rst').read() + "\n" +
open('CHANGES.rst').read()),
classifiers=[
"Framework :: Zope2",
"Framework :: Zope3",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
'Framework :: Zope',
'Framework :: Zope2',
'Framework :: Zope :: 2',
'Framework :: Zope3',
'Framework :: Zope :: 3',
'Framework :: Zope :: 4',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='page template override',

author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
url='http://pypi.python.org/pypi/z3c.jbot',
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -3,6 +3,7 @@ envlist =
py27
py35
py36
py37

[testenv]
usedevelop = true
Expand Down

0 comments on commit f62bf5a

Please sign in to comment.