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

Fixed #28178 -- Changed contrib.gis to raise ImproperlyConfigured if gdal isn't installed.

This commit is contained in:
Tim Graham
2017-05-08 09:42:06 -04:00
parent a404f75f92
commit c2975910a5
2 changed files with 9 additions and 4 deletions

View File

@@ -11,3 +11,7 @@ Bugfixes
* Added detection for GDAL 2.1 and 2.0, and removed detection for unsupported
versions 1.7 and 1.8 (:ticket:`28181`).
* Changed ``contrib.gis`` to raise ``ImproperlyConfigured`` rather than
``GDALException`` if ``gdal`` isn't installed, to allow third-party apps to
catch that exception (:ticket:`28178`).