diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py
index 96acee9..1e27cb4 100644
a
|
b
|
if lib_path:
|
21 | 21 | lib_names = None |
22 | 22 | elif os.name == 'nt': |
23 | 23 | # Windows NT shared libraries |
24 | | lib_names = ['gdal201', 'gdal20', 'gdal111', 'gdal110', 'gdal19'] |
| 24 | lib_names = ['gdal202', 'gdal201', 'gdal20', 'gdal111', 'gdal110', 'gdal19'] |
25 | 25 | elif os.name == 'posix': |
26 | 26 | # *NIX library names. |
27 | | lib_names = ['gdal', 'GDAL', 'gdal2.1.0', 'gdal2.0.0', 'gdal1.11.0', 'gdal1.10.0', 'gdal1.9.0'] |
| 27 | lib_names = ['gdal', 'GDAL', 'gdal2.2.0', 'gdal2.1.0', 'gdal2.0.0', 'gdal1.11.0', 'gdal1.10.0', 'gdal1.9.0'] |
28 | 28 | else: |
29 | 29 | raise ImproperlyConfigured('GDAL is unsupported on OS "%s".' % os.name) |
30 | 30 | |
diff --git a/docs/ref/contrib/gis/install/geolibs.txt b/docs/ref/contrib/gis/install/geolibs.txt
index 8d62815..7e4e40f 100644
a
|
b
|
Program Description Required
|
10 | 10 | ======================== ==================================== ================================ =================================== |
11 | 11 | :doc:`GEOS <../geos>` Geometry Engine Open Source Yes 3.5, 3.4, 3.3 |
12 | 12 | `PROJ.4`_ Cartographic Projections library Yes (PostgreSQL and SQLite only) 4.9, 4.8, 4.7, 4.6, 4.5, 4.4 |
13 | | :doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 2.1, 2.0, 1.11, 1.10, 1.9 |
| 13 | :doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 2.2, 2.1, 2.0, 1.11, 1.10, 1.9 |
14 | 14 | :doc:`GeoIP <../geoip2>` IP-based geolocation library No 2 |
15 | 15 | `PostGIS`__ Spatial extensions for PostgreSQL Yes (PostgreSQL only) 2.3, 2.2, 2.1 |
16 | 16 | `SpatiaLite`__ Spatial extensions for SQLite Yes (SQLite only) 4.3, 4.2, 4.1, 4.0 |
… |
… |
totally fine with GeoDjango. Your mileage may vary.
|
34 | 34 | GDAL 1.11.0 2014-04-25 |
35 | 35 | GDAL 2.0.0 2015-06 |
36 | 36 | GDAL 2.1.0 2016-04 |
| 37 | GDAL 2.2.0 2017-05 |
37 | 38 | PostGIS 2.1.0 2013-08-17 |
38 | 39 | PostGIS 2.2.0 2015-10-17 |
39 | 40 | PostGIS 2.3.0 2016-09-26 |