diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-10 09:47:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-10 09:47:16 +0900 |
commit | 366e4674f7900a29565d991000218520a5e2fc0f (patch) | |
tree | ba27f3c00d2836bd5ba9c4b26a3870c028ea3440 | |
parent | 5d786d2b847e272e20e9994cfc1a645661dac9c8 (diff) | |
parent | 96f6c950ddbd7d9273c38d6209abd3f73d1b95b1 (diff) | |
download | sphinx-git-366e4674f7900a29565d991000218520a5e2fc0f.tar.gz |
Merge pull request #5741 from jdufresne/xenial
Use 'dist: xenial' in Travis to simplify configuration
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index f14bf6495..4d03e3e13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: python sudo: false -dist: trusty +dist: xenial cache: pip env: @@ -20,12 +20,8 @@ matrix: - PYTEST_ADDOPTS="--cov ./ --cov-append --cov-config setup.cfg" - python: '3.7' env: TOXENV=py37 - dist: xenial - sudo: true - python: 'nightly' env: TOXENV=py38 - dist: xenial - sudo: true - python: '3.6' env: TOXENV=docs - python: '3.6' |