From 1f0fe1be330d0e259e17ff108f62ce0f846ecea3 Mon Sep 17 00:00:00 2001 From: Joachim Ungar Date: Mon, 2 Mar 2026 08:44:09 +0100 Subject: [PATCH 1/2] use most recent mapchete image for testing; update license year and version --- LICENSE | 2 +- docker-compose.yml | 6 +++--- src/mapchete_hub_cli/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index 64946c6..bb1d96b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2018 - 2025 EOX IT Services +Copyright (c) 2018 - 2026 EOX IT Services Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docker-compose.yml b/docker-compose.yml index c016c38..fc95d60 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: command: [ "--bind_ip_all" ] server: - image: ghcr.io/mapchete/mapchete:2026.2.0 + image: ghcr.io/mapchete/mapchete:2026.2.2 depends_on: - dask_scheduler - db @@ -39,7 +39,7 @@ services: ] dask_scheduler: - image: ghcr.io/mapchete/mapchete:2026.2.0 + image: ghcr.io/mapchete/mapchete:2026.2.2 networks: - backend command: @@ -52,7 +52,7 @@ services: ] dask_worker: - image: ghcr.io/mapchete/mapchete:2026.2.0 + image: ghcr.io/mapchete/mapchete:2026.2.2 depends_on: - dask_scheduler networks: diff --git a/src/mapchete_hub_cli/__init__.py b/src/mapchete_hub_cli/__init__.py index 91879e0..dd39309 100644 --- a/src/mapchete_hub_cli/__init__.py +++ b/src/mapchete_hub_cli/__init__.py @@ -19,4 +19,4 @@ "MHUB_CLI_ZONES_WAIT_TIME_SECONDS", "load_mapchete_config", ] -__version__ = "2025.9.0" +__version__ = "2026.3.0" From 0b9fad157984a36078177fb906398627ed399254 Mon Sep 17 00:00:00 2001 From: Joachim Ungar Date: Mon, 2 Mar 2026 08:48:15 +0100 Subject: [PATCH 2/2] make sure package can be published via pypi --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 0499260..79b5324 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -21,7 +21,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install hatch + pip install hatch "virtualenv<21.0.0" - name: Build and publish env: HATCH_INDEX_USER: "__token__"