diff options
| author | David Smith <smithdc@gmail.com> | 2025-08-12 08:47:03 +0100 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-08-21 16:46:41 +0200 |
| commit | fb0d463b1f88a38f3e7cd8d66ed6c69309f97901 (patch) | |
| tree | 506c10b0a18b191fe50fde775273d20ad031686d /django/contrib/gis/gdal/libgdal.py | |
| parent | 7063d31cc37028e0f945faa43030ce23dc1a5c23 (diff) | |
Fixed #36382 -- Confirmed support for GDAL 3.11.
TIGER driver was removed in GDAL 3.11.
https://github.com/OSGeo/gdal/commit/eb793be0395ccba50e053a46b30cb90deb530990
Diffstat (limited to 'django/contrib/gis/gdal/libgdal.py')
| -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 6a942fb630..f92a1cdea0 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 = [ + "gdal311", "gdal310", "gdal309", "gdal308", @@ -38,6 +39,7 @@ elif os.name == "posix": lib_names = [ "gdal", "GDAL", + "gdal3.11.0", "gdal3.10.0", "gdal3.9.0", "gdal3.8.0", |
