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
4 changes: 2 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Frequenz Electricity Trading API Client Release Notes

## Bug Fixes
## Summary

* Fixed a public order book stream bug where a stream was reused for requests with different start and stop time parameters.
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.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ 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",
"frequenz-api-common >= 0.6.5, < 0.8.0",
"grpcio >= 1.72.1, < 2",
"entsoe-py >= 0.6.16, < 0.8.0",
"frequenz-api-common >= 0.6.5, < 1",
"frequenz-api-electricity-trading >= 0.8.0, < 0.9.0",
"frequenz-channels >= 1.6.1, < 2",
"frequenz-client-base >= 0.11.0, < 0.12.0",
"frequenz-client-common >= 0.1.0, < 0.4.0",
"frequenz-api-electricity-trading >= 0.8.0, < 0.9.0",
"grpcio >= 1.72.1, < 2",
"protobuf >= 6.31.1, < 8", # Do not widen beyond 8!
]
dynamic = ["version"]
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
Loading