Skip to content

Commit 537945f

Browse files
author
Steffen Fredriksen
committed
Bump 0.0.18
1 parent 723f4e9 commit 537945f

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ludeeus/integration_blueprint",
3-
"image": "mcr.microsoft.com/devcontainers/python:3.12",
3+
"image": "mcr.microsoft.com/devcontainers/python:3.13",
44
"postCreateCommand": "scripts/setup",
55
"forwardPorts": [
66
8123

custom_components/nordpool/aio_price.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,9 @@ async def fetch(self, data_type, end_date=None, areas=None, raw=False):
287287
if raw:
288288
return await self._fetch_json(data_type, today, areas)
289289
jobs = [
290-
self._fetch_json(data_type, yesterday, areas),
290+
self._fetch_json(
291+
data_type, yesterday, areas
292+
), # TODO this is no longer needed, seems like NP api really does return what they should
291293
self._fetch_json(data_type, today, areas),
292294
self._fetch_json(data_type, tomorrow, areas),
293295
]

custom_components/nordpool/const.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
CONFIG_SCHEMA = vol.Schema({DOMAIN: vol.Schema({})}, extra=vol.ALLOW_EXTRA)
1616

1717
NAME = DOMAIN
18-
VERSION = "0.0.17"
18+
VERSION = "0.0.18"
1919
ISSUEURL = "https://github.com/custom-components/nordpool/issues"
2020

2121

@@ -123,7 +123,7 @@
123123
"BE": ["EUR", "Belgium", 0.06],
124124
"AT": ["EUR", "Austria", 0.20],
125125
# Unsure about tax rate, correct if wrong
126-
"GER": ["EUR", "Germany", 0.19],
126+
"GER": ["EUR", "Germany", 0.19], # <-- this should be fixed.
127127
}
128128

129129
# Needed incase a user wants the prices in non local currency

custom_components/nordpool/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"requirements": [
1616
"backoff"
1717
],
18-
"version": "0.0.17"
18+
"version": "0.0.18"
1919
}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
nordpool==0.4.2
1+
#nordpool==0.4.2
22
backoff

scripts/dev

100644100755
File mode changed.

scripts/setup

100644100755
File mode changed.

0 commit comments

Comments
 (0)