Python 在travis CI中更新SQLite

Python 在travis CI中更新SQLite,python,sqlite,travis-ci,Python,Sqlite,Travis Ci,在Python3.6和3.7(django 2.2)上,我得到了 django.core.exceptions.impropertlyconfigured:需要SQLite 3.8.3或更高版本(见3.8.2)。 论特拉维西 我所做的 我试着用插件安装它: 这里的消息来源被忽略了 Disallowing sources: travis-ci/sqlite3 To add unlisted APT sources, follow instructions in https://docs.tra

在Python3.6和3.7(django 2.2)上,我得到了
django.core.exceptions.impropertlyconfigured:需要SQLite 3.8.3或更高版本(见3.8.2)。
论特拉维西

我所做的
  • 我试着用插件安装它:
这里的消息来源被忽略了

Disallowing sources: travis-ci/sqlite3
To add unlisted APT sources, follow instructions in https://docs.travis-ci.com/user/installing-dependencies#Installing-Packages-with-the-APT-Addon
  • 在安装前,ppa处于运行状态
错误:

Cannot add PPA: 'ppa:travis-ci/sqlite3'.
Please check that the PPA name or format is correct.
我怎样才能让它工作

来源

将构建环境更新为。信任只包含

before_install:
  - sudo apt-add-repository -y ppa:travis-ci/sqlite3
  - sudo apt-get -y update
  - sudo apt-get -y install sqlite3=3.7.15.1-1~travis1
Cannot add PPA: 'ppa:travis-ci/sqlite3'.
Please check that the PPA name or format is correct.
dist: xenial
language: python
...