From 05d9470e296af70357791491c1778fcec9232a7e Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 12 Aug 2018 18:21:14 -0700 Subject: [PATCH] Alternative attempt at upgrading SQLite --- .travis.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index ddb11d5..f25f19c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,14 @@ language: python +sudo: required # 3.6 is listed first so it gets used for the later build stages python: - "3.6" - "3.7-dev" -addons: - apt: - sources: - - travis-ci/sqlite3 - packages: - - sqlite3 - script: + - sudo add-apt-repository ppa:jonathonf/backports + - sudo apt-get update && sudo apt-get install sqlite3 - pip install -U pip wheel - pip install .[test] - pytest