1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #35776 -- Dropped support for GDAL 3.0.

This commit is contained in:
David Smith
2024-09-19 13:41:28 +01:00
committed by Sarah Boyce
parent 92f860e3f4
commit 1857b6663b
3 changed files with 6 additions and 7 deletions

View File

@@ -30,7 +30,6 @@ elif os.name == "nt":
"gdal303",
"gdal302",
"gdal301",
"gdal300",
]
elif os.name == "posix":
# *NIX library names.
@@ -45,7 +44,6 @@ elif os.name == "posix":
"gdal3.3.0",
"gdal3.2.0",
"gdal3.1.0",
"gdal3.0.0",
]
else:
raise ImproperlyConfigured('GDAL is unsupported on OS "%s".' % os.name)