From 1e9ca5f7fc39371a0ee7410320b2ac4ea04420ad Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 25 Jul 2018 22:03:30 -0700 Subject: [PATCH] Fix missing quote in .travis.yml --- .travis.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3ebe8fe..d85fc42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,18 +2,13 @@ language: python sudo: required python: - - "2.7 - - "3.6" +- "2.7" +- "3.6" matrix: include: - dist: trusty env: dist="14.04 LTS trusty" -# - dist: xenial -# env: dist="16.04 LTS xenial" -# Travis-CI only proposes 14.04 LTS Trusty and there is no plan to update to 16.04 xenial -# (c.f. https://github.com/travis-ci/travis-ci/issues/5821) -# It is useless to add a second job because it will run in the same Ubuntu version (14.04) before_install: - sudo apt-get update -qq @@ -32,4 +27,5 @@ script: notifications: email: on_success: never -# More details: https://docs.travis-ci.com/user/notifications#Configuring-email-notifications + +# More details: https://docs.travis-ci.com/user/notifications