Skip to content
Merged
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
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: checks
name: tests

on:
push:
Expand All @@ -7,16 +7,19 @@ on:
branches: [ main ]

jobs:
install-and-test-windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}

- run: pip install -e ".[dev]"

- run: pytest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dhis2eo

[![Linting and test status](https://github.com/dhis2/dhis2eo/actions/workflows/ci.yml/badge.svg)](https://github.com/dhis2/dhis2eo/actions/workflows/ci.yml)
[![Test status](https://github.com/dhis2/dhis2eo/actions/workflows/tests.yml/badge.svg)](https://github.com/dhis2/dhis2eo/actions/workflows/tests.yml)
[![Latest version](https://img.shields.io/github/v/release/dhis2/dhis2eo)](https://github.com/dhis2/dhis2eo/releases)

Dhis2eo is a small, focused Python library for DHIS2 users who want to integrate earth observation and climate data into their workflows. It provides lightweight helpers and tools bridging the Python geoscience and DHIS2 ecosystems.
Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ build-backend = "setuptools.build_meta"

[project]
name = "dhis2eo"
version = "1.0.0"
version = "1.0.1"
description = "DHIS2 Earth Observation Toolkit"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"earthkit-data[netcdf,geotiff,geopandas,projection,cds]",
"xarray",
"rioxarray",
"pandas",
"numpy",
"earthkit-data[netcdf,geotiff,geopandas,projection,cds]==0.16.*",
"xarray>=2025.6,<2026",
"rioxarray==0.19.*",
"pandas>=2.3,<3",
"geopandas>=1.1,<2",
"numpy>=2.2,<3",
]

[tool.setuptools.packages.find]
Expand All @@ -22,8 +23,8 @@ include = ["dhis2eo*"]

[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.14.10",
"pytest>=8.0,<9",
"ruff==0.14.*",
]

[tool.pytest.ini_options]
Expand Down