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.ecovacs.*
homeassistant.components.ecowitt.* homeassistant.components.ecowitt.*
homeassistant.components.efergy.* homeassistant.components.efergy.*
homeassistant.components.electrasmart.*
homeassistant.components.electric_kiwi.* homeassistant.components.electric_kiwi.*
homeassistant.components.elgato.* homeassistant.components.elgato.*
homeassistant.components.elkm1.* homeassistant.components.elkm1.*

View file

@ -5,5 +5,5 @@
"config_flow": true, "config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/electrasmart", "documentation": "https://www.home-assistant.io/integrations/electrasmart",
"iot_class": "cloud_polling", "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_return_any = true
warn_unreachable = 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.*] [mypy-homeassistant.components.electric_kiwi.*]
check_untyped_defs = true check_untyped_defs = true
disallow_incomplete_defs = true disallow_incomplete_defs = true

View file

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

View file

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

View file

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