diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-10-18 21:04:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-18 21:04:11 +0200 |
| commit | d506e4a52847ed4fb80754175d76b6b83ff90929 (patch) | |
| tree | 04fb86a5e8c74229d2dff7430928605b725abc77 /docs/ref | |
| parent | 0c487aa3a7b2417481bf48c1e5355c855873e210 (diff) | |
Fixed #36671 -- Dropped support for SQLite < 3.37.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/gis/install/index.txt | 2 | ||||
| -rw-r--r-- | docs/ref/databases.txt | 2 | ||||
| -rw-r--r-- | docs/ref/models/querysets.txt | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/install/index.txt b/docs/ref/contrib/gis/install/index.txt index e08c78b147..f127478151 100644 --- a/docs/ref/contrib/gis/install/index.txt +++ b/docs/ref/contrib/gis/install/index.txt @@ -60,7 +60,7 @@ Database Library Requirements Supported Versions Notes PostgreSQL GEOS, GDAL, PROJ, PostGIS 15+ Requires PostGIS. MySQL GEOS, GDAL 8.0.11+ :ref:`Limited functionality <mysql-spatial-limitations>`. Oracle GEOS, GDAL 19+ XE not supported. -SQLite GEOS, GDAL, PROJ, SpatiaLite 3.31.0+ Requires SpatiaLite 4.3+ +SQLite GEOS, GDAL, PROJ, SpatiaLite 3.37.0+ Requires SpatiaLite 4.3+ ================== ============================== ================== ========================================= See also `this comparison matrix`__ on the OSGeo Wiki for diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index cbd0e2feea..cd415e1c00 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -814,7 +814,7 @@ appropriate typecasting. SQLite notes ============ -Django supports SQLite 3.31.0 and later. +Django supports SQLite 3.37.0 and later. SQLite_ provides an excellent development alternative for applications that are predominantly read-only or require a smaller installation footprint. As diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 164bc9ce54..d9badb690d 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2439,8 +2439,8 @@ This has a number of caveats though: * If the model's primary key is an :class:`~django.db.models.AutoField` or has a :attr:`~django.db.models.Field.db_default` value, and ``ignore_conflicts`` is ``False``, the primary key attribute can only be retrieved on certain - databases (currently PostgreSQL, MariaDB, and SQLite 3.35+). On other - databases, it will not be set. + databases (currently PostgreSQL, MariaDB, and SQLite). On other databases, it + will not be set. * It does not work with many-to-many relationships. * It casts ``objs`` to a list, which fully evaluates ``objs`` if it's a generator. The cast allows inspecting all objects so that any objects with a |
