Skip to content

Commit

Permalink
Raise minimum xarray version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Dec 29, 2024
1 parent 7349d99 commit 55d5af5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ci/environment-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ dependencies:
- pandas == 1.4.0
- rasterio == 1.3.0
- rioxarray == 0.13.0
- xarray == 2023.02.0
- xarray == 2023.12.0
- xarray-sentinel == 0.9.3
- xmlschema == 2.2.0
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering"
"Topic :: Scientific/Engineering",
]
dependencies = [
"attrs",
Expand All @@ -23,12 +23,12 @@ dependencies = [
"rasterio",
"rioxarray",
"typer",
"xarray >= 2022.06.0",
"xarray-sentinel >= 0.9.3"
"xarray >= 2023.12.0",
"xarray-sentinel >= 0.9.3",
]
description = "Algorithms and utilities for Synthetic Aperture Radar (SAR) sensors"
dynamic = ["version"]
license = {file = "LICENSE"}
license = { file = "LICENSE" }
name = "sarsen"
readme = "README.md"

Expand All @@ -49,7 +49,7 @@ module = ["py", "rasterio"]
[tool.ruff]
ignore = [
# pydocstyle: Missing Docstrings
"D1"
"D1",
]
# Same as Black.
indent-width = 4
Expand All @@ -63,7 +63,7 @@ select = [
# isort
"I",
# pydocstyle
"D"
"D",
]

[tool.ruff.lint.pycodestyle]
Expand Down

0 comments on commit 55d5af5

Please sign in to comment.