forked from apache/sedona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
36 lines (32 loc) · 829 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pytest="*"
notebook="==6.4.12"
jupyter="*"
mkdocs="*"
pytest-cov = "*"
scikit-learn = "*"
esda = "*"
libpysal = "*"
matplotlib = "*" # implicit dependency of esda
scipy = "<=1.10.0" # prevent incompatibility with pysal 4.7.0, which is what is resolved to when shapely >2 is specified
[packages]
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="*"
pyarrow="*"
keplergl = "==0.3.2"
pydeck = "===0.8.0"
pystac = "===1.8.4"
rasterio = ">=1.2.10"
[requires]
python_version = "3.7"