Bump solax to 3.1.0 (#114617)

0.3.2 was succeeded by 0.3.4.
0.3.3 was yanked
0.3.4 was succeeded by 3.0.5.
3.0.5 is succeeded by 3.1.0.
This commit is contained in:
Dos Moonen 2024-04-02 23:16:39 +02:00 committed by GitHub
parent 2ef0521d3d
commit 3875533f95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 5 deletions

View File

@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/solax", "documentation": "https://www.home-assistant.io/integrations/solax",
"iot_class": "local_polling", "iot_class": "local_polling",
"loggers": ["solax"], "loggers": ["solax"],
"requirements": ["solax==0.3.2"] "requirements": ["solax==3.1.0"]
} }

View File

@ -6,7 +6,7 @@ import asyncio
from datetime import timedelta from datetime import timedelta
from solax import RealTimeAPI from solax import RealTimeAPI
from solax.discovery import InverterError from solax.inverter import InverterError
from solax.units import Units from solax.units import Units
from homeassistant.components.sensor import ( from homeassistant.components.sensor import (

View File

@ -2581,7 +2581,7 @@ solaredge-local==0.2.3
solaredge==0.0.2 solaredge==0.0.2
# homeassistant.components.solax # homeassistant.components.solax
solax==0.3.2 solax==3.1.0
# homeassistant.components.somfy_mylink # homeassistant.components.somfy_mylink
somfy-mylink-synergy==1.0.6 somfy-mylink-synergy==1.0.6

View File

@ -1985,7 +1985,7 @@ soco==0.30.2
solaredge==0.0.2 solaredge==0.0.2
# homeassistant.components.solax # homeassistant.components.solax
solax==0.3.2 solax==3.1.0
# homeassistant.components.somfy_mylink # homeassistant.components.somfy_mylink
somfy-mylink-synergy==1.0.6 somfy-mylink-synergy==1.0.6

View File

@ -18,7 +18,11 @@ def __mock_real_time_api_success():
def __mock_get_data(): def __mock_get_data():
return InverterResponse( return InverterResponse(
data=None, serial_number="ABCDEFGHIJ", version="2.034.06", type=4 data=None,
dongle_serial_number="ABCDEFGHIJ",
version="2.034.06",
type=4,
inverter_serial_number="XXXXXXX",
) )