Skip to content

Commit 2bb6e03

Browse files
Bump elmax-api (#133845)
1 parent 2288f89 commit 2bb6e03

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

homeassistant/components/elmax/config_flow.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ async def _test_direct_and_create_entry(self):
151151
port=self._panel_direct_port,
152152
)
153153
)
154-
ssl_context = build_direct_ssl_context(cadata=self._panel_direct_ssl_cert)
154+
ssl_context = await self.hass.async_add_executor_job(
155+
build_direct_ssl_context, self._panel_direct_ssl_cert
156+
)
155157

156158
# Attempt the connection to make sure the pin works. Also, take the chance to retrieve the panel ID via APIs.
157159
client_api_url = get_direct_api_url(

homeassistant/components/elmax/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"documentation": "https://www.home-assistant.io/integrations/elmax",
77
"iot_class": "cloud_polling",
88
"loggers": ["elmax_api"],
9-
"requirements": ["elmax-api==0.0.6.3"],
9+
"requirements": ["elmax-api==0.0.6.4rc0"],
1010
"zeroconf": [
1111
{
1212
"type": "_elmax-ssl._tcp.local."

requirements_all.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ eliqonline==1.2.2
827827
elkm1-lib==2.2.10
828828

829829
# homeassistant.components.elmax
830-
elmax-api==0.0.6.3
830+
elmax-api==0.0.6.4rc0
831831

832832
# homeassistant.components.elvia
833833
elvia==0.1.0

requirements_test_all.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ elgato==5.1.2
702702
elkm1-lib==2.2.10
703703

704704
# homeassistant.components.elmax
705-
elmax-api==0.0.6.3
705+
elmax-api==0.0.6.4rc0
706706

707707
# homeassistant.components.elvia
708708
elvia==0.1.0

0 commit comments

Comments
 (0)