Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Add support for Python 3.7.
Browse files Browse the repository at this point in the history
modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed Apr 10, 2019
1 parent f977cca commit cefee3d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Expand Up @@ -12,6 +12,11 @@ python:
- pypy
- pypy3

matrix:
include:
- python: "3.7"
dist: xenial

install:
- pip install tox-travis

Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -8,6 +8,8 @@ Changes

- Drop support for Python 3.4.

- Add support for Python 3.7.


2.1.0 (2017-04-24)
------------------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def read(*rnames):

setup(
name='z3c.coverage',
version='2.1.1.dev0',
version='3.0.dev0',
author="Zope Community",
author_email="zope3-dev@zope.org",
description="A script to visualize coverage reports via HTML",
Expand All @@ -41,6 +41,7 @@ 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',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py35,py36,pypy,pypy3
envlist = py27,py35,py36,py37,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit cefee3d

Please sign in to comment.