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
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@

## Summary

<!-- Here goes a general summary of what this release is about -->

## Upgrading

* Switch to `MicrogridConfig` from `frequenz-gridpool` package.

## New Features

<!-- Here goes the main new features and examples or instructions on how to use them -->

## Bug Fixes
- Fixed wind components in the energy_report_df and aggregating metrics.

<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
]
requires-python = ">= 3.11, < 4"
dependencies = [
"typing-extensions >= 4.12.2, < 5",
"typing-extensions >= 4.14.1, < 5",
"numpy >= 2.3.1, < 3",
"pandas >= 2.3.1, < 3",
"pyarrow >= 20.0.0, < 23.0.0",
Expand All @@ -40,6 +40,7 @@ dependencies = [
"kaleido >= 0.2.1, < 1.3.0",
"frequenz-client-reporting >= 0.19.0, < 0.20.0",
"frequenz-client-weather >= 0.2.3, < 0.3.0",
"frequenz-gridpool >= 0.1, < 0.2",
"types-pyyaml>=6.0.12.20250915",
"marshmallow>=4.1.0,<5",
"pyyaml>=6.0.3",
Expand Down
3 changes: 2 additions & 1 deletion src/frequenz/data/microgrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

"""Initialize the microgrid data module."""

from frequenz.gridpool import MicrogridConfig

from ._stateful_data_fetcher import StatefulDataFetcher
from .component_data import MicrogridData
from .config import MicrogridConfig

__all__ = [
"MicrogridConfig",
Expand Down
3 changes: 1 addition & 2 deletions src/frequenz/data/microgrid/component_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
import pandas as pd
from frequenz.client.common.metric import Metric
from frequenz.client.reporting import ReportingApiClient

from .config import MicrogridConfig
from frequenz.gridpool import MicrogridConfig

_logger = logging.getLogger(__name__)

Expand Down
Loading