Bump python-miio version (#18095)
This commit is contained in:
parent
a9361482d9
commit
c75c00d568
8 changed files with 9 additions and 9 deletions
|
@ -13,7 +13,7 @@ from homeassistant.components.device_tracker import (
|
||||||
from homeassistant.const import CONF_HOST, CONF_TOKEN
|
from homeassistant.const import CONF_HOST, CONF_TOKEN
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ from homeassistant.const import (
|
||||||
from homeassistant.exceptions import PlatformNotReady
|
from homeassistant.exceptions import PlatformNotReady
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -348,7 +348,7 @@ async def async_setup_platform(hass, config, async_add_entities,
|
||||||
device = XiaomiAirPurifier(name, air_purifier, model, unique_id)
|
device = XiaomiAirPurifier(name, air_purifier, model, unique_id)
|
||||||
elif model.startswith('zhimi.humidifier.'):
|
elif model.startswith('zhimi.humidifier.'):
|
||||||
from miio import AirHumidifier
|
from miio import AirHumidifier
|
||||||
air_humidifier = AirHumidifier(host, token)
|
air_humidifier = AirHumidifier(host, token, model=model)
|
||||||
device = XiaomiAirHumidifier(name, air_humidifier, model, unique_id)
|
device = XiaomiAirHumidifier(name, air_humidifier, model, unique_id)
|
||||||
else:
|
else:
|
||||||
_LOGGER.error(
|
_LOGGER.error(
|
||||||
|
|
|
@ -21,7 +21,7 @@ from homeassistant.exceptions import PlatformNotReady
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
from homeassistant.util import dt
|
from homeassistant.util import dt
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ from homeassistant.exceptions import PlatformNotReady
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
from homeassistant.util.dt import utcnow
|
from homeassistant.util.dt import utcnow
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ from homeassistant.exceptions import PlatformNotReady
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ from homeassistant.const import (
|
||||||
from homeassistant.exceptions import PlatformNotReady
|
from homeassistant.exceptions import PlatformNotReady
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ from homeassistant.const import (
|
||||||
ATTR_ENTITY_ID, CONF_HOST, CONF_NAME, CONF_TOKEN, STATE_OFF, STATE_ON)
|
ATTR_ENTITY_ID, CONF_HOST, CONF_NAME, CONF_TOKEN, STATE_OFF, STATE_ON)
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.45']
|
REQUIREMENTS = ['python-miio==0.4.3', 'construct==2.9.45']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -1167,7 +1167,7 @@ python-juicenet==0.0.5
|
||||||
# homeassistant.components.sensor.xiaomi_miio
|
# homeassistant.components.sensor.xiaomi_miio
|
||||||
# homeassistant.components.switch.xiaomi_miio
|
# homeassistant.components.switch.xiaomi_miio
|
||||||
# homeassistant.components.vacuum.xiaomi_miio
|
# homeassistant.components.vacuum.xiaomi_miio
|
||||||
python-miio==0.4.2
|
python-miio==0.4.3
|
||||||
|
|
||||||
# homeassistant.components.media_player.mpd
|
# homeassistant.components.media_player.mpd
|
||||||
python-mpd2==1.0.0
|
python-mpd2==1.0.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue