Skip to content

Commit e18bef9

Browse files
cwasickillucax
authored andcommitted
Widen entsoe dependency to allow v0.7.x
And ignore mypy failure. Signed-off-by: cwasicki <[email protected]>
1 parent 1af78a5 commit e18bef9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ requires-python = ">= 3.11, < 4"
3939
# TODO(cookiecutter): Remove and add more dependencies if appropriate
4040
dependencies = [
4141
"click >= 8.1.8, < 9",
42-
# Versions beyond 0.7.2 fail mypy checks
43-
"entsoe-py >= 0.6.16, < 0.7.2",
42+
"entsoe-py >= 0.6.16, < 0.8.0",
4443
"frequenz-api-common >= 0.6.5, < 1",
4544
"frequenz-api-electricity-trading >= 0.8.0, < 0.9.0",
4645
"frequenz-channels >= 1.6.1, < 2",

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)