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

## Upgrading

<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
* Widen the version range of api-common to also allow v0.8.x.
* Restrict entsoe client dependency version range up to v0.7.x.

## New Features

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ requires-python = ">= 3.11, < 4"
# TODO(cookiecutter): Remove and add more dependencies if appropriate
dependencies = [
"click >= 8.1.8, < 9",
"entsoe-py >= 0.6.16, < 1",
"entsoe-py >= 0.6.16, < 0.8.0",
"frequenz-api-common >= 0.6.5, < 0.9.0",
"grpcio >= 1.72.1, < 2",
"frequenz-channels >= 1.6.1, < 2",
Expand Down
2 changes: 1 addition & 1 deletion src/frequenz/client/electricity_trading/cli/day_ahead.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from datetime import datetime

import pandas as pd
from entsoe import EntsoePandasClient
from entsoe import EntsoePandasClient # type: ignore[attr-defined]


def list_day_ahead_prices(
Expand Down