I've installed Django 2.2, on to a virtualenv using Python 3.6 The minimum supported version of SQLite is now 3.8.3 https://docs.djangoproject.com/en/2.2/releases/2.2/
When I run tests I get the following error:
django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.8.2).
Checking the version of SQLite shows that it no longer satisfies the minimum requirement for Django 2.2
>>> import sqlite3
>>> sqlite3.sqlite_version
'3.8.2'
Is there an easy way to upgrade the version of SQLite on PythonAnywhere?