summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorDavid Smith <39445562+smithdc1@users.noreply.github.com>2024-12-27 15:21:04 +0000
committerGitHub <noreply@github.com>2024-12-27 12:21:04 -0300
commit8d9901c961bf9d5cfa6bddddbbcebfbf487a5125 (patch)
treed0708d68be4593f1dc42e2c8d05daee597c4a13a /django
parentc534b6c4938cd817e5d7903dce15a689a4862a99 (diff)
Fixed #35891 -- Confirmed support for GDAL 3.10.
Diffstat (limited to 'django')
-rw-r--r--django/contrib/gis/gdal/libgdal.py2
1 files changed, 2 insertions, 0 deletions
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",