From 7ec3dbce1d8e654d5a7adfe2b04b4650f0682e67 Mon Sep 17 00:00:00 2001 From: Magnus Watn Date: Thu, 27 Dec 2018 10:13:16 +0100 Subject: [PATCH] Python 3.7 support --- .travis.yml | 4 +++- setup.py | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0032909..76cc99e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,12 @@ -sudo: false language: python +sudo: required +dist: xenial python: - "2.7" - "3.4" - "3.5" - "3.6" + - "3.7" install: - pip install tox-travis codecov script: diff --git a/setup.py b/setup.py index 3ae09c7..c929f5f 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ def read_file(filename, encoding='utf8'): 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Security', 'Topic :: Software Development :: Libraries',