Bump pyElectra to 1.2.1 (#118958)

This commit is contained in:
Ruben Bokobza 2024-06-11 08:04:25 +03:00 committed by GitHub
parent cceb0d8b47
commit 35347929ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 3 additions and 15 deletions

View File

@ -163,7 +163,6 @@ homeassistant.components.easyenergy.*
homeassistant.components.ecovacs.*
homeassistant.components.ecowitt.*
homeassistant.components.efergy.*
homeassistant.components.electrasmart.*
homeassistant.components.electric_kiwi.*
homeassistant.components.elgato.*
homeassistant.components.elkm1.*

View File

@ -5,5 +5,5 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/electrasmart",
"iot_class": "cloud_polling",
"requirements": ["pyElectra==1.2.0"]
"requirements": ["pyElectra==1.2.1"]
}

View File

@ -1393,16 +1393,6 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.electrasmart.*]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.electric_kiwi.*]
check_untyped_defs = true
disallow_incomplete_defs = true

View File

@ -1673,7 +1673,7 @@ pyControl4==1.1.0
pyDuotecno==2024.5.1
# homeassistant.components.electrasmart
pyElectra==1.2.0
pyElectra==1.2.1
# homeassistant.components.emby
pyEmby==1.9

View File

@ -1332,7 +1332,7 @@ pyControl4==1.1.0
pyDuotecno==2024.5.1
# homeassistant.components.electrasmart
pyElectra==1.2.0
pyElectra==1.2.1
# homeassistant.components.rfxtrx
pyRFXtrx==0.31.1

View File

@ -30,7 +30,6 @@ PIP_VERSION_RANGE_SEPARATOR = re.compile(r"^(==|>=|<=|~=|!=|<|>|===)?(.*)$")
IGNORE_STANDARD_LIBRARY_VIOLATIONS = {
# Integrations which have standard library requirements.
"electrasmart",
"slide",
"suez_water",
}