Skip to content

Commit e723729

Browse files
author
dsamaey
committed
Issue #761 better diff for apex reference check (added scipy dependency)
1 parent bdb906b commit e723729

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
with open("openeo/_version.py") as fp:
1414
exec(fp.read(), _version)
1515

16-
1716
with open("README.md", "r") as fh:
1817
long_description = fh.read()
1918

@@ -22,7 +21,8 @@
2221
"mock",
2322
"requests-mock>=1.8.0",
2423
"httpretty>=1.1.4",
25-
"urllib3<2.3.0", # httpretty doesn't work properly with urllib3>=2.3.0. See #700 and https://github.com/gabrielfalcao/HTTPretty/issues/484
24+
"urllib3<2.3.0",
25+
# httpretty doesn't work properly with urllib3>=2.3.0. See #700 and https://github.com/gabrielfalcao/HTTPretty/issues/484
2626
"netCDF4>=1.7.0",
2727
"matplotlib", # TODO: eliminate matplotlib as test dependency
2828
# TODO #717 Simplify geopandas constraints when Python 3.8 support is dropped
@@ -35,6 +35,7 @@
3535
"pyarrow>=10.0.1", # For Parquet read/write support in pandas
3636
"python-dateutil>=2.7.0",
3737
"pystac-client>=0.7.5",
38+
"scipy", # for Convex Hull algorithm
3839
]
3940

4041
docs_require = [
@@ -56,7 +57,6 @@
5657
"ipython",
5758
]
5859

59-
6060
name = "openeo"
6161
setup(
6262
name=name,

0 commit comments

Comments
 (0)