Skip to content

Commit

Permalink
Issue #117 include gunicorn configs in wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Feb 7, 2024
1 parent 384f7b6 commit 3cb9c43
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [0.18.1]

- Include gunicorn configs in wheel (related to [#117](https://github.com/Open-EO/openeo-aggregator/issues/117))

## [0.18.0]

- Start porting `AggregatorConfig` fields to `AggregatorBackendConfig` ([#112](https://github.com/Open-EO/openeo-aggregator/issues/112))
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@
package_dir={"": "src"},
include_package_data=True,
data_files=[
("openeo-aggregator", ["CHANGELOG.md"]),
(
"openeo-aggregator-data",
[
"CHANGELOG.md",
"conf/gunicorn.dev.py",
"conf/gunicorn.prod.py",
],
),
],
python_requires=">=3.8",
install_requires=[
Expand Down
2 changes: 1 addition & 1 deletion src/openeo_aggregator/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from typing import Optional

__version__ = "0.18.0a1"
__version__ = "0.18.1a1"


def log_version_info(logger: Optional[logging.Logger] = None):
Expand Down

0 comments on commit 3cb9c43

Please sign in to comment.