summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-08-01 14:39:03 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-08-01 14:40:51 -0700
commit5e3a58dd91367cf8944c94284a546234a93723cb (patch)
tree3175f965c0c9d03d9d43de2d874e443f3830d4e8 /.travis.yml
parenta126820b15d8402aaeae6189cdb9df469b690761 (diff)
travis: Add python 3.7 support, which requires using 16.04 Xenial
Travis doesn't provide python 3.7 on Ubuntu 14.04 Trusty, likely due to the fact that python 3.7 requires a newer version of libssl than trusty provides. Fixes #1284
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index d1c671e8..4af4f86b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,15 +7,15 @@ cache:
ccache: True
-# We need a newer version of zlib to build notmuch from source as is available
-# in precise.
-dist: trusty
+# Python 3.7 is not supported in trusty
+dist: xenial
python:
# We can add more version strings here when we support other python
# versions.
- "3.5"
- "3.6"
+ - "3.7"
# We start two containers in parallel, one to check and build the docs and the
# other to run the test suite.