From 9f3b2da3b253382aa832187a98749246cd084045 Mon Sep 17 00:00:00 2001 From: Stefaan Lippens Date: Tue, 25 Jun 2024 15:37:19 +0200 Subject: [PATCH] Add dummy config to wheel refs and related: #117 #143 #146 eu-cdse/openeo-cdse-infra#175 --- CHANGELOG.md | 4 ++++ setup.py | 1 + src/openeo_aggregator/about.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae3e315..bd8a45b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/ +## 0.35.1 + +- Add `aggregator.dummy.py` to wheel ([#117](https://github.com/Open-EO/openeo-aggregator/issues/117)) + ## 0.35.0 - Start with `openeo-aggregator` docs, hosted with GitHub Pages at https://open-eo.github.io/openeo-aggregator/ ([#142](https://github.com/Open-EO/openeo-aggregator/issues/142)) diff --git a/setup.py b/setup.py index dac8b6d..966bb4d 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ "CHANGELOG.md", "conf/gunicorn.dev.py", "conf/gunicorn.prod.py", + "conf/aggregator.dummy.py", ], ), ], diff --git a/src/openeo_aggregator/about.py b/src/openeo_aggregator/about.py index 39058d7..521aacd 100644 --- a/src/openeo_aggregator/about.py +++ b/src/openeo_aggregator/about.py @@ -2,7 +2,7 @@ import sys from typing import Optional -__version__ = "0.35.0a1" +__version__ = "0.35.1a1" def log_version_info(logger: Optional[logging.Logger] = None):