diff options
| author | David Smith <smithdc@gmail.com> | 2023-12-20 18:22:07 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-12-21 10:35:23 +0100 |
| commit | 3ec15b0bcf03cfa397453910d0087fdb13f02189 (patch) | |
| tree | 86f289f9bd6ab251eabd9f4a6fe6154eac63733e /django | |
| parent | c709a748ce6e0759e415a0e3544e0f4ad3d30f8b (diff) | |
Fixed #35005 -- Confirmed support for GDAL 3.8.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/gis/gdal/libgdal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py index e3beb62a79..1aa7eecfdd 100644 --- a/django/contrib/gis/gdal/libgdal.py +++ b/django/contrib/gis/gdal/libgdal.py @@ -22,6 +22,7 @@ if lib_path: elif os.name == "nt": # Windows NT shared libraries lib_names = [ + "gdal308", "gdal307", "gdal306", "gdal305", @@ -36,6 +37,7 @@ elif os.name == "posix": lib_names = [ "gdal", "GDAL", + "gdal3.8.0", "gdal3.7.0", "gdal3.6.0", "gdal3.5.0", |
