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

This skips some tests on systems with GEOS < 3.3 (the minimum
supported version).
This commit is contained in:
Claude Paroz 2015-11-07 10:10:52 +01:00 committed by Tim Graham
parent 9f4e031bd3
commit b52b9cf6f2
1 changed files with 1 additions and 2 deletions

View File

@ -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