summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/base.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-12-30 09:01:56 +0100
committerGitHub <noreply@github.com>2020-12-30 09:01:56 +0100
commit74fd233b1433da8c68de636172ee1c9c6d1c08c9 (patch)
tree29db22cdfeac44c9b5dd0e1fcf1e08a028c5e845 /django/db/backends/sqlite3/base.py
parente64c1d8055a3e476122633da141f16b50f0c4a2d (diff)
Fixed #32303 -- Bumped minimum supported SQLite to 3.9.0.
Diffstat (limited to 'django/db/backends/sqlite3/base.py')
-rw-r--r--django/db/backends/sqlite3/base.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py
index ab4ea70492..9ce3208960 100644
--- a/django/db/backends/sqlite3/base.py
+++ b/django/db/backends/sqlite3/base.py
@@ -64,8 +64,10 @@ def list_aggregate(function):
def check_sqlite_version():
- if Database.sqlite_version_info < (3, 8, 3):
- raise ImproperlyConfigured('SQLite 3.8.3 or later is required (found %s).' % Database.sqlite_version)
+ if Database.sqlite_version_info < (3, 9, 0):
+ raise ImproperlyConfigured(
+ 'SQLite 3.9.0 or later is required (found %s).' % Database.sqlite_version
+ )
check_sqlite_version()