Skip to content

Commit a43f74b

Browse files
committed
Dependencies for installation and CI where mixed up
1 parent b11d309 commit a43f74b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ci/environment-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ dependencies:
1414
- sphinx
1515
- sphinx-autoapi
1616
# DO NOT EDIT ABOVE THIS LINE, ADD DEPENDENCIES BELOW
17+
- shapely
1718
- pandas-stubs
1819
- types-setuptools

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies:
77
- numpy >= 1.23.0
88
- rasterio >= 1.3.0
99
- rioxarray >= 0.10.0
10-
- shapely
10+
- scipy
1111
- xarray >= 2022.06.0
1212
- xmlschema >= 2.0.1
1313
- zarr

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
build-backend = "setuptools.build_meta"
33
requires = ["setuptools>=64", "setuptools_scm>=8"]
44

5+
[dependency-groups]
6+
dev = ["mypy", "pandas-stubs", "pytest", "pytest-cov", "shapely"]
7+
58
[project]
69
authors = [{"name" = "B-Open", "email" = "software@bopen.eu"}]
710
classifiers = [
@@ -14,13 +17,15 @@ classifiers = [
1417
"Programming Language :: Python :: 3.10",
1518
"Programming Language :: Python :: 3.11",
1619
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
1721
"Topic :: Scientific/Engineering"
1822
]
1923
dependencies = [
2024
"fsspec",
2125
"numpy",
2226
"pandas",
2327
"rioxarray",
28+
"scipy",
2429
"xarray >= 0.18.0",
2530
"xmlschema"
2631
]
@@ -40,7 +45,7 @@ keywords = [
4045
license = {file = "LICENSE"}
4146
name = "xarray-sentinel"
4247
readme = "README.md"
43-
requires-python = ">=3.9"
48+
requires-python = ">=3.10"
4449

4550
[project.entry-points."xarray.backends"]
4651
sentinel-1 = "xarray_sentinel.xarray_backends:Sentinel1Backend"
@@ -59,6 +64,7 @@ strict = true
5964
ignore_missing_imports = true
6065
module = [
6166
"cfchecker",
67+
"dask",
6268
"fsspec",
6369
"rasterio",
6470
"shapely",

0 commit comments

Comments
 (0)