From 9ca7c47ab8412ae6b2309cc02b7d89545063836a Mon Sep 17 00:00:00 2001 From: Jeremy Kolbe Date: Fri, 5 Oct 2018 13:36:54 +0200 Subject: [PATCH] Add support for Python 3.7 --- .travis.yml | 7 ++++++- CHANGES.rst | 2 +- setup.py | 3 ++- tox.ini | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f44d718..80e6fd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,12 @@ python: - 3.5 - 3.6 - pypy - - pypy3.5-5.8.0 + - pypy3 +matrix: + include: + - python: "3.7" + dist: xenial + sudo: true install: - pip install -U pip setuptools - pip install -U coverage coveralls diff --git a/CHANGES.rst b/CHANGES.rst index c8b1c87..55ea4d5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,7 @@ 4.2.1 (unreleased) ================== -- Nothing changed yet. +- Add support for Python 3.7. 4.2.0 (2017-08-02) diff --git a/setup.py b/setup.py index 36783e4..035d891 100644 --- a/setup.py +++ b/setup.py @@ -56,9 +56,10 @@ def alltests(): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', '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', 'Operating System :: OS Independent', diff --git a/tox.ini b/tox.ini index fbb7eb1..9c50628 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py27,pypy,py34,py35,py36,pypy3,coverage + py27,pypy,py34,py35,py36,py37,pypy3,coverage [testenv] commands =