Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/device_tracker/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
vol.Required(CONF_TOKEN): vol.All(cv.string, vol.Length(min=32, max=32)),
})

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']


def get_scanner(hass, config):
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/fan/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'zhimi.humidifier.ca1']),
})

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']

ATTR_MODEL = 'model'

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/light/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
'philips.light.candle2']),
})

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']

# The light does not accept cct values < 1
CCT_MIN = 1
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/remote/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import homeassistant.helpers.config_validation as cv
from homeassistant.util.dt import utcnow

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/sensor/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
})

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']

ATTR_POWER = 'power'
ATTR_CHARGING = 'charging'
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/switch/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
'chuangmi.plug.v3']),
})

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']

ATTR_POWER = 'power'
ATTR_TEMPERATURE = 'temperature'
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/vacuum/xiaomi_miio.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
ATTR_ENTITY_ID, CONF_HOST, CONF_NAME, CONF_TOKEN, STATE_OFF, STATE_ON)
import homeassistant.helpers.config_validation as cv

REQUIREMENTS = ['python-miio==0.4.1', 'construct==2.9.41']
REQUIREMENTS = ['python-miio==0.4.2', 'construct==2.9.41']

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1147,7 +1147,7 @@ python-juicenet==0.0.5
# homeassistant.components.sensor.xiaomi_miio
# homeassistant.components.switch.xiaomi_miio
# homeassistant.components.vacuum.xiaomi_miio
python-miio==0.4.1
python-miio==0.4.2

# homeassistant.components.media_player.mpd
python-mpd2==1.0.0
Expand Down