Refs #28181 -- Corrected detection of GDAL 2.1 on Windows.
Follow up to a404f75f92
.
This commit is contained in:
parent
9509268cea
commit
c32476e5ba
|
@ -21,7 +21,7 @@ if lib_path:
|
||||||
lib_names = None
|
lib_names = None
|
||||||
elif os.name == 'nt':
|
elif os.name == 'nt':
|
||||||
# Windows NT shared libraries
|
# Windows NT shared libraries
|
||||||
lib_names = ['gdal21', 'gdal20', 'gdal111', 'gdal110', 'gdal19']
|
lib_names = ['gdal201', 'gdal20', 'gdal111', 'gdal110', 'gdal19']
|
||||||
elif os.name == 'posix':
|
elif os.name == 'posix':
|
||||||
# *NIX library names.
|
# *NIX library names.
|
||||||
lib_names = ['gdal', 'GDAL', 'gdal2.1.0', 'gdal2.0.0', 'gdal1.11.0', 'gdal1.10.0', 'gdal1.9.0']
|
lib_names = ['gdal', 'GDAL', 'gdal2.1.0', 'gdal2.0.0', 'gdal1.11.0', 'gdal1.10.0', 'gdal1.9.0']
|
||||||
|
|
|
@ -42,3 +42,5 @@ Bugfixes
|
||||||
|
|
||||||
* Prevented ``Subquery`` from adding an unnecessary ``CAST`` which resulted in
|
* Prevented ``Subquery`` from adding an unnecessary ``CAST`` which resulted in
|
||||||
invalid SQL (:ticket:`28199`).
|
invalid SQL (:ticket:`28199`).
|
||||||
|
|
||||||
|
* Corrected detection of GDAL 2.1 on Windows (:ticket:`28181`).
|
||||||
|
|
Loading…
Reference in New Issue