Commit b52b9cf6 authored by Claude Paroz's avatar Claude Paroz Committed by Tim Graham
Browse files

Refs #25655 -- Made HAS_GEOS depend on a minimum version.

This skips some tests on systems with GEOS < 3.3 (the minimum
supported version).
parent 9f4e031b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@ from .point import Point # NOQA
from .polygon import Polygon  # NOQA

try:
    geos_version_info()
    HAS_GEOS = True
    HAS_GEOS = geos_version_info()['version'] >= '3.3.0'
except ImportError:
    HAS_GEOS = False