Skip to content

Commit

Permalink
[SEDONA-550] Remove the version upper bound of Pandas, GeoPandas (#1381)
Browse files Browse the repository at this point in the history
* Update versions

* Pandas 1.5.3 works for all Spark versions. Spark 3.4.1 starts to work with Pandas 2.0
  • Loading branch information
jiayuasu committed Apr 30, 2024
1 parent eba7b2a commit d724abc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions python/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ mkdocs="*"
pytest-cov = "*"

[packages]
shapely=">=2.0.0"
pandas="<=1.3.5"
geopandas="<=0.10.2"
pandas="<=1.5.3"
geopandas="*"
shapely=">=1.7.0"
pyspark=">=2.3.0"
attrs="*"
pyarrow="*"
Expand Down
6 changes: 3 additions & 3 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
install_requires=['attrs', "shapely>=1.7.0", "rasterio>=1.2.10"],
extras_require={
"spark": ["pyspark>=2.3.0"],
"pydeck-map": ["pandas<=1.3.5", "geopandas<=0.10.2", "pydeck==0.8.0"],
"kepler-map": ["pandas<=1.3.5", "geopandas<=0.10.2", "keplergl==0.3.2"],
"all": ["pyspark>=2.3.0", "pandas<=1.3.5", "geopandas<=0.10.2","pydeck==0.8.0", "keplergl==0.3.2"],
"pydeck-map": ["geopandas", "pydeck==0.8.0"],
"kepler-map": ["geopandas", "keplergl==0.3.2"],
"all": ["pyspark>=2.3.0", "geopandas","pydeck==0.8.0", "keplergl==0.3.2"],
},
project_urls={
'Documentation': 'https://sedona.apache.org',
Expand Down

0 comments on commit d724abc

Please sign in to comment.