You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2023/04/05 18:45:49 UTC

[sedona] branch master updated: [SEDONA-273] Explicitly bound Pandas, GeoPandas and Shapely versions (#816)

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 1fb08855 [SEDONA-273] Explicitly bound Pandas, GeoPandas and Shapely versions (#816)
1fb08855 is described below

commit 1fb08855effc5c82c11a73d9d4a1ddaf5111e172
Author: Jia Yu <ji...@apache.org>
AuthorDate: Wed Apr 5 11:45:44 2023 -0700

    [SEDONA-273] Explicitly bound Pandas, GeoPandas and Shapely versions (#816)
---
 python/Pipfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/python/Pipfile b/python/Pipfile
index a11eb58b..e1aeb8c1 100644
--- a/python/Pipfile
+++ b/python/Pipfile
@@ -11,9 +11,9 @@ mkdocs="*"
 pytest-cov = "*"
 
 [packages]
-shapely="==1.8.5"
-pandas="*"
-geopandas="==0.10.2"
+shapely="<=1.8.5"
+pandas="<=1.3.5"
+geopandas="<=0.10.2"
 pyspark=">=2.3.0"
 attrs="*"
 pyarrow="*"