Skip to content

Commit 0c6cb8c

Browse files
authored
Relax the dependency on frequenz-api-common to allow up to 1.0.0 (#185)
2 parents 2cf8d6c + e18bef9 commit 0c6cb8c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Frequenz Electricity Trading API Client Release Notes
22

3-
## Bug Fixes
3+
## Summary
44

5-
* Fixed a public order book stream bug where a stream was reused for requests with different start and stop time parameters.
5+
This release relaxes the API common dependency so it can work up to v1.0.0, as all v0.x versions should be compatible from v0.6.x on.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ requires-python = ">= 3.11, < 4"
3939
# TODO(cookiecutter): Remove and add more dependencies if appropriate
4040
dependencies = [
4141
"click >= 8.1.8, < 9",
42-
"entsoe-py >= 0.6.16, < 1",
43-
"frequenz-api-common >= 0.6.5, < 0.8.0",
44-
"grpcio >= 1.72.1, < 2",
42+
"entsoe-py >= 0.6.16, < 0.8.0",
43+
"frequenz-api-common >= 0.6.5, < 1",
44+
"frequenz-api-electricity-trading >= 0.8.0, < 0.9.0",
4545
"frequenz-channels >= 1.6.1, < 2",
4646
"frequenz-client-base >= 0.11.0, < 0.12.0",
4747
"frequenz-client-common >= 0.1.0, < 0.4.0",
48-
"frequenz-api-electricity-trading >= 0.8.0, < 0.9.0",
48+
"grpcio >= 1.72.1, < 2",
4949
"protobuf >= 6.31.1, < 8", # Do not widen beyond 8!
5050
]
5151
dynamic = ["version"]

src/frequenz/client/electricity_trading/cli/day_ahead.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from datetime import datetime
77

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

1111

1212
def list_day_ahead_prices(

0 commit comments

Comments
 (0)