Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/ref/contrib/gis/install/geolibs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ geospatial libraries:
============================== ==================================== ================================ ===================================================
Program Description Required Supported Versions
============================== ==================================== ================================ ===================================================
:ref:`GEOS <geos-overview>` Geometry Engine Open Source Yes 3.14, 3.13, 3.12, 3.11, 3.10, 3.9
:ref:`GEOS <geos-overview>` Geometry Engine Open Source Yes 3.14, 3.13, 3.12, 3.11, 3.10
`PROJ`_ Cartographic Projections library Yes (PostgreSQL and SQLite only) 9.x, 8.x, 7.x, 6.x
:ref:`GDAL <gdal-overview>` Geospatial Data Abstraction Library Yes 3.12, 3.11, 3.10, 3.9, 3.8, 3.7, 3.6, 3.5, 3.4, 3.3
:ref:`GeoIP <geoip2-overview>` IP-based geolocation library No 2
Expand All @@ -26,7 +26,6 @@ totally fine with GeoDjango. Your mileage may vary.

..
Libs release dates:
GEOS 3.9.0 2020-12-14
GEOS 3.10.0 2021-10-20
GEOS 3.11.0 2022-07-01
GEOS 3.12.0 2023-06-27
Expand Down
2 changes: 1 addition & 1 deletion docs/releases/6.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ backends.

* Support for PostGIS 3.1 is removed.

* Support for GEOS 3.8 is removed.
* Support for GEOS 3.8 and 3.9 is removed.

* Support for GDAL 3.1 and 3.2 is removed.

Expand Down
6 changes: 1 addition & 5 deletions tests/gis_tests/geos_tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
WKTReader,
WKTWriter,
)
from django.contrib.gis.geos.libgeos import geos_version_tuple
from django.test import SimpleTestCase


Expand Down Expand Up @@ -52,10 +51,7 @@ def test02_wktwriter(self):
def test_wktwriter_constructor_arguments(self):
wkt_w = WKTWriter(dim=3, trim=True, precision=3)
ref = GEOSGeometry("POINT (5.34562 23 1.5)")
if geos_version_tuple() > (3, 10):
ref_wkt = "POINT Z (5.346 23 1.5)"
else:
ref_wkt = "POINT Z (5.35 23 1.5)"
ref_wkt = "POINT Z (5.346 23 1.5)"
self.assertEqual(ref_wkt, wkt_w.write(ref).decode())

def test03_wkbreader(self):
Expand Down
Loading