Skip to content

Commit

Permalink
Add Python 3.7 support
Browse files Browse the repository at this point in the history
Also drop Python 2.6 from .travis.yml.
  • Loading branch information
mgedmin committed Apr 25, 2019
1 parent 79378a2 commit 7e54f05
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
@@ -1,8 +1,10 @@
language: python
dist: xenial
python:
- 2.6
- 2.7
- 3.3
- 3.5
- 3.6
- 3.7
install:
- pip install .
script:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.txt
Expand Up @@ -5,7 +5,9 @@ CHANGES
1.0.2 (unreleased)
------------------

- ...
- Add Python 3.7 support.

- Drop Python 2.6 from Travis CI.


1.0.1 (2018-05-16)
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -49,12 +49,14 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope :: 3'],
'Framework :: Zope :: 3',
],
url = 'http://pypi.python.org/pypi/z3c.authenticator',
packages = find_packages('src'),
include_package_data = True,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py35,py36,pypy
envlist = py27,py35,py36,py37,pypy

[testenv]
usedevelop = true
Expand Down

0 comments on commit 7e54f05

Please sign in to comment.