From bc396ebf1a4de64c934f6111d5dc0c9742c0e430 Mon Sep 17 00:00:00 2001 From: James Willis Date: Thu, 5 Sep 2024 00:01:00 -0700 Subject: [PATCH] [SEDONA-650] keep fiona version below 1.10.0 (#1576) Co-authored-by: jameswillis --- python/Pipfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/Pipfile b/python/Pipfile index 20e7ae3c86..3440e38da2 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -14,6 +14,9 @@ pytest-cov = "*" pandas="<=1.5.3" numpy="<2" geopandas="*" +# https://stackoverflow.com/questions/78949093/how-to-resolve-attributeerror-module-fiona-has-no-attribute-path +# cannot set geopandas>=0.14.4 since it doesn't support python 3.8, so we pin fiona to <1.10.0 +fiona="<1.10.0" shapely=">=1.7.0" pyspark=">=2.3.0" attrs="*"