diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2021-01-11 00:20:00 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2021-01-11 00:20:54 +0100 |
commit | 755eee7ddb7736bf76dfab8e8543affd5cd1d2f4 (patch) | |
tree | 636a3d469c67247ca58bbd09f66270664a320b68 | |
parent | a0c62ee89dc161b74c4fbbf8f17a3266b85a3fae (diff) |
Simplify Travis matrix
This also ensures that supported Python interpreters are output in
order.
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 7662ef1..2f039bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,22 +2,21 @@ language: python os: linux dist: bionic cache: pip -python: - - 2.7 - - 3.5 - - 3.6 - - 3.7 - - 3.8 - - 3.9 - - pypy3 jobs: include: - python: 2.6 dist: trusty + - python: 2.7 - python: 3.4 dist: xenial + - python: 3.5 + - python: 3.6 + - python: 3.7 + - python: 3.8 + - python: 3.9 - python: pypy dist: xenial + - python: pypy3 - python: 3.8 env: TOXENV=flake8 - python: 3.8 |