From c6cc4b625b41683db8ff5287947c64744e8bae2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Heissler?= Date: Sat, 22 Dec 2018 16:57:41 +0100 Subject: Test with py3.7; Travis should use Xenial for 3.7 and nightly. (#379) --- .travis.yml | 23 +++++++++++++---------- tox.ini | 2 +- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 29f1d44..2113aec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,21 @@ language: python cache: pip -python: - - 2.7 - - 3.4 - - 3.5 - - 3.6 - - nightly - - pypy - - pypy-5.3 - - pypy3 +matrix: + include: + - python: 2.7 + - python: 3.4 + - python: 3.5 + - python: 3.6 + - python: pypy + - python: pypy-5.3 + - python: pypy3 + - python: 3.7 + dist: xenial + - python: nightly + dist: xenial install: - pip install --upgrade . - pip list script: - python setup.py test -q - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then pip install flake8==2.1.0 pep8==1.5.6 && flake8 --version && flake8 pyflakes setup.py; fi -sudo: false diff --git a/tox.ini b/tox.ini index fabad9d..f3db2bb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] skip_missing_interpreters = True envlist = - py27,py34,py35,py36,pypy,pypy3 + py27,py34,py35,py36,py37,pypy,pypy3 [testenv] deps = -- cgit v1.2.1