From 91dfd676b4340045d5acf62dcbb5aff235d624fc Mon Sep 17 00:00:00 2001 From: Michael Farrell Date: Thu, 5 Nov 2020 11:11:06 +1100 Subject: [PATCH] Run test suite with Python 3.8 (thanks to #28) --- .travis.yml | 8 +++----- tox.ini | 3 ++- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9bbbb95..5f83dcd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,14 +2,12 @@ language: python python: - 2.7 - 3.6 + - 3.7 + - 3.8 - nightly +dist: xenial matrix: - include: - # Required to run Python 3.7 - - python: 3.7 - dist: xenial - sudo: required allow_failures: - python: nightly diff --git a/tox.ini b/tox.ini index aefa0a7..b9d1a9e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,8 @@ [tox] envlist = py27, py36, - py37 + py37, + py38 minversion = 3.3.0 skip_missing_interpreters = true isolated_build = true