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 74d6bdcd6 [SEDONA-609] Fix python 3.12 build issue caused by binary
compatibility issues with numpy 2.0.0 (#1478)
74d6bdcd6 is described below
commit 74d6bdcd666b67bf3e0eca8ed786dd16f4f6c71b
Author: Feng Zhang <[email protected]>
AuthorDate: Mon Jun 17 10:52:46 2024 -0700
[SEDONA-609] Fix python 3.12 build issue caused by binary compatibility
issues with numpy 2.0.0 (#1478)
* [SEDONA-609] Fix python 3.12 build issue caused by binary compatibility
issues with numpy 2.0.0
* should be <2
---
python/Pipfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/python/Pipfile b/python/Pipfile
index f889e87e3..20e7ae3c8 100644
--- a/python/Pipfile
+++ b/python/Pipfile
@@ -12,6 +12,7 @@ pytest-cov = "*"
[packages]
pandas="<=1.5.3"
+numpy="<2"
geopandas="*"
shapely=">=1.7.0"
pyspark=">=2.3.0"