mirror of
https://github.com/home-assistant/core.git
synced 2025-07-11 15:27:08 +00:00
Bump python-eq3bt requirement (#75145)
This commit is contained in:
parent
bb4ee1ba32
commit
184e254a43
@ -3,7 +3,6 @@ from __future__ import annotations
|
|||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from bluepy.btle import BTLEException # pylint: disable=import-error
|
|
||||||
import eq3bt as eq3 # pylint: disable=import-error
|
import eq3bt as eq3 # pylint: disable=import-error
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
@ -218,5 +217,5 @@ class EQ3BTSmartThermostat(ClimateEntity):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
self._thermostat.update()
|
self._thermostat.update()
|
||||||
except BTLEException as ex:
|
except eq3.BackendException as ex:
|
||||||
_LOGGER.warning("Updating the state failed: %s", ex)
|
_LOGGER.warning("Updating the state failed: %s", ex)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"domain": "eq3btsmart",
|
"domain": "eq3btsmart",
|
||||||
"name": "EQ3 Bluetooth Smart Thermostats",
|
"name": "eQ-3 Bluetooth Smart Thermostats",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/eq3btsmart",
|
"documentation": "https://www.home-assistant.io/integrations/eq3btsmart",
|
||||||
"requirements": ["construct==2.10.56", "python-eq3bt==0.1.11"],
|
"requirements": ["construct==2.10.56", "python-eq3bt==0.2"],
|
||||||
|
"dependencies": ["bluetooth"],
|
||||||
"codeowners": ["@rytilahti"],
|
"codeowners": ["@rytilahti"],
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["bluepy", "eq3bt"]
|
"loggers": ["bleak", "eq3bt"]
|
||||||
}
|
}
|
||||||
|
@ -1893,7 +1893,7 @@ python-digitalocean==1.13.2
|
|||||||
python-ecobee-api==0.2.14
|
python-ecobee-api==0.2.14
|
||||||
|
|
||||||
# homeassistant.components.eq3btsmart
|
# homeassistant.components.eq3btsmart
|
||||||
# python-eq3bt==0.1.11
|
# python-eq3bt==0.2
|
||||||
|
|
||||||
# homeassistant.components.etherscan
|
# homeassistant.components.etherscan
|
||||||
python-etherscan-api==0.0.3
|
python-etherscan-api==0.0.3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user