summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-01-20 18:54:29 +0100
committerGitHub <noreply@github.com>2022-01-20 18:54:29 +0100
commitf605e85af9763a3940369bb79462f2cb466288f6 (patch)
tree7f7e27fdfe15b80c4e9ddabefc85dd91ebc513ab /docs
parent2c76c27a951ee76c6f763a05c7e119305a21c78d (diff)
Fixed #33453 -- Dropped support for GDAL 2.1.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/gdal.txt3
-rw-r--r--docs/ref/contrib/gis/install/geolibs.txt9
-rw-r--r--docs/releases/4.1.txt5
3 files changed, 10 insertions, 7 deletions
diff --git a/docs/ref/contrib/gis/gdal.txt b/docs/ref/contrib/gis/gdal.txt
index a6ddcdd4ce..c7174a3a5a 100644
--- a/docs/ref/contrib/gis/gdal.txt
+++ b/docs/ref/contrib/gis/gdal.txt
@@ -1521,8 +1521,7 @@ blue.
to mark pixels that are not valid data. Such pixels should generally not
be displayed, nor contribute to analysis operations.
- To delete an existing "no data" value, set this property to ``None``
- (requires GDAL ≥ 2.1).
+ To delete an existing "no data" value, set this property to ``None``.
.. method:: datatype(as_string=False)
diff --git a/docs/ref/contrib/gis/install/geolibs.txt b/docs/ref/contrib/gis/install/geolibs.txt
index 7e0a0d4ee5..c7436d2dfc 100644
--- a/docs/ref/contrib/gis/install/geolibs.txt
+++ b/docs/ref/contrib/gis/install/geolibs.txt
@@ -5,16 +5,16 @@ Installing Geospatial libraries
GeoDjango uses and/or provides interfaces for the following open source
geospatial libraries:
-======================== ==================================== ================================ ======================================
+======================== ==================================== ================================ =================================
Program Description Required Supported Versions
-======================== ==================================== ================================ ======================================
+======================== ==================================== ================================ =================================
:doc:`GEOS <../geos>` Geometry Engine Open Source Yes 3.10, 3.9, 3.8, 3.7, 3.6
`PROJ`_ Cartographic Projections library Yes (PostgreSQL and SQLite only) 8.x, 7.x, 6.x, 5.x, 4.x
-:doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 3.3, 3.2, 3.1, 3.0, 2.4, 2.3, 2.2, 2.1
+:doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 3.3, 3.2, 3.1, 3.0, 2.4, 2.3, 2.2
:doc:`GeoIP <../geoip2>` IP-based geolocation library No 2
`PostGIS`__ Spatial extensions for PostgreSQL Yes (PostgreSQL only) 3.2, 3.1, 3.0, 2.5, 2.4
`SpatiaLite`__ Spatial extensions for SQLite Yes (SQLite only) 5.0, 4.3
-======================== ==================================== ================================ ======================================
+======================== ==================================== ================================ =================================
Note that older or more recent versions of these libraries *may* also work
totally fine with GeoDjango. Your mileage may vary.
@@ -26,7 +26,6 @@ totally fine with GeoDjango. Your mileage may vary.
GEOS 3.8.0 2019-10-10
GEOS 3.9.0 2020-12-14
GEOS 3.10.0 2021-10-20
- GDAL 2.1.0 2016-04
GDAL 2.2.0 2017-05
GDAL 2.3.0 2018-05
GDAL 2.4.0 2018-12
diff --git a/docs/releases/4.1.txt b/docs/releases/4.1.txt
index 8fc23e6141..c2a13a86b4 100644
--- a/docs/releases/4.1.txt
+++ b/docs/releases/4.1.txt
@@ -310,6 +310,11 @@ backends.
``DatabaseOperations.insert_statement()`` method is replaced by
``on_conflict`` that accepts ``django.db.models.constants.OnConflict``.
+:mod:`django.contrib.gis`
+-------------------------
+
+* Support for GDAL 2.1 is removed.
+
Dropped support for MariaDB 10.2
--------------------------------