python-geopandas/force-shapely-check-true.patch
Elliott Sales de Andrade 1826c2cd1a Force shapely check to true, to fix build.
This fails because Shapely is some beta version in F32, which doesn't
compare correctly.
2020-07-02 04:06:05 -04:00

13 lines
437 B
Diff

diff --git a/geopandas/_compat.py b/geopandas/_compat.py
index fa86961..8cb4fc7 100644
--- a/geopandas/_compat.py
+++ b/geopandas/_compat.py
@@ -21,7 +21,7 @@ PANDAS_GE_11 = str(pd.__version__) >= LooseVersion("1.1.0.dev")
# -----------------------------------------------------------------------------
-SHAPELY_GE_17 = str(shapely.__version__) >= LooseVersion("1.7.0")
+SHAPELY_GE_17 = True
HAS_PYGEOS = None
USE_PYGEOS = None