From 8d9901c961bf9d5cfa6bddddbbcebfbf487a5125 Mon Sep 17 00:00:00 2001 From: David Smith <39445562+smithdc1@users.noreply.github.com> Date: Fri, 27 Dec 2024 15:21:04 +0000 Subject: Fixed #35891 -- Confirmed support for GDAL 3.10. --- django/contrib/gis/gdal/libgdal.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'django') diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py index c9757a546f..49d6363878 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 = [ + "gdal310", "gdal309", "gdal308", "gdal307", @@ -37,6 +38,7 @@ elif os.name == "posix": lib_names = [ "gdal", "GDAL", + "gdal3.10.0", "gdal3.9.0", "gdal3.8.0", "gdal3.7.0", -- cgit v1.3