1
0
mirror of https://github.com/django/django.git synced 2025-10-26 07:06:08 +00:00

Fixed #32928 -- Confirmed support for GDAL 3.3.

This commit is contained in:
David Smith
2021-07-16 08:36:53 +01:00
committed by GitHub
parent 10f66c91cb
commit f51a792c41
2 changed files with 7 additions and 6 deletions

View File

@@ -21,14 +21,14 @@ if lib_path:
elif os.name == 'nt':
# Windows NT shared libraries
lib_names = [
'gdal302', 'gdal301', 'gdal300',
'gdal303', 'gdal302', 'gdal301', 'gdal300',
'gdal204', 'gdal203', 'gdal202', 'gdal201', 'gdal20',
]
elif os.name == 'posix':
# *NIX library names.
lib_names = [
'gdal', 'GDAL',
'gdal3.2.0', 'gdal3.1.0', 'gdal3.0.0',
'gdal3.3.0', 'gdal3.2.0', 'gdal3.1.0', 'gdal3.0.0',
'gdal2.4.0', 'gdal2.3.0', 'gdal2.2.0', 'gdal2.1.0', 'gdal2.0.0',
]
else: