diff options
author | Christian Clauss <cclauss@me.com> | 2020-01-03 19:55:31 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2020-01-03 19:55:31 +0100 |
commit | 99f4ea300caec96ce04b844a668d8b427064364f (patch) | |
tree | c127cf08b48259c7979789bcc11d092631d433f9 | |
parent | 41cc5f378e2454ff1cabe5d227242cce211a3a2b (diff) | |
download | python-lxml-99f4ea300caec96ce04b844a668d8b427064364f.tar.gz |
Travis CI: Simplify now that Trusty is EOL (GH-295)
* Travis CI: Simplify now that Trusty is EOL
* Py3.7 for coverage
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/.travis.yml b/.travis.yml index 70a21743..75f8d4a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ os: linux -dist: trusty language: python @@ -10,9 +9,11 @@ cache: - libs python: - - 2.7 + - 3.8 + - 3.7 - 3.6 - 3.5 + - 2.7 env: global: @@ -30,22 +31,8 @@ env: matrix: include: - python: 3.7 - dist: xenial # Required for Python >= 3.7 env: STATIC_DEPS=false EXTRA_DEPS=coverage - - python: 3.7 - dist: xenial # Required for Python >= 3.7 - env: STATIC_DEPS=false - - python: 3.7 - dist: xenial # Required for Python >= 3.7 - env: STATIC_DEPS=true - - python: 3.8 - dist: xenial # Required for Python >= 3.7 - env: STATIC_DEPS=false - python: 3.8 - dist: xenial # Required for Python >= 3.7 - env: STATIC_DEPS=true - - python: 3.7 - dist: xenial # Required for Python >= 3.7 env: - STATIC_DEPS=true - LIBXML2_VERSION=2.9.2 # minimum version requirements |