Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build for linux/amd64: docker buildx build --platform linux/amd64 -t <tag> . --push
FROM python:3.13-slim
FROM python:3.12-slim

# System dependencies (including GDAL for rasterio)
RUN apt-get update && apt-get install -y \
Expand Down
20 changes: 8 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,28 @@ name = "data-pipeline"
version = "1.0.0"
description = "Minimal event-driven Argo Workflows pipeline for Sentinel-2 GeoZarr conversion and STAC registration"
readme = "README.md"
requires-python = ">=3.13"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "EOPF Explorer", email = "[email protected]" }]
keywords = ["geozarr", "stac", "sentinel", "earth-observation", "zarr"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
]

dependencies = [
"pystac>=1.10.0",
"pystac-client>=0.7.0",
"httpx>=0.27.0",
"boto3>=1.34.0",
"xarray>=2024.0.0",
"zarr>=2.18.0",
"s3fs>=2024.0.0",
"click>=8.1.0",
"httpx>=0.27.0",
"pika>=1.3.0",
"pystac>=1.10.0",
"pystac-client>=0.7.0",
"tenacity>=8.0.0",
"morecantile>=5.0.0",
"cf-xarray>=0.9.0",
"eopf-geozarr @ git+https://github.com/EOPF-Explorer/data-model.git@fix/s1-encoding-conflict",
"eopf-geozarr @ git+https://github.com/EOPF-Explorer/[email protected]",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -98,7 +94,7 @@ exclude_lines = [
]

[tool.ruff]
target-version = "py313"
target-version = "py312"
line-length = 100
indent-width = 4

Expand Down Expand Up @@ -132,7 +128,7 @@ indent-style = "space"
line-ending = "auto"

[tool.mypy]
python_version = "3.13"
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down
Loading