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/homekit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from .util import (
show_setup_message, validate_entity_config, validate_media_player_features)

REQUIREMENTS = ['HAP-python==2.2.2']
REQUIREMENTS = ['HAP-python==2.3.0']

_LOGGER = logging.getLogger(__name__)

Expand Down
8 changes: 3 additions & 5 deletions homeassistant/components/homekit/type_switches.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""Class to hold all switch accessories."""
import logging

from pyhap.const import CATEGORY_OUTLET, CATEGORY_SWITCH
from pyhap.const import (
CATEGORY_FAUCET, CATEGORY_OUTLET, CATEGORY_SHOWER_HEAD,
CATEGORY_SPRINKLER, CATEGORY_SWITCH)

from homeassistant.components.switch import DOMAIN
from homeassistant.const import (
Expand All @@ -17,10 +19,6 @@

_LOGGER = logging.getLogger(__name__)

CATEGORY_SPRINKLER = 28
CATEGORY_FAUCET = 29
CATEGORY_SHOWER_HEAD = 30

VALVE_TYPE = {
TYPE_FAUCET: (CATEGORY_FAUCET, 3),
TYPE_SHOWER: (CATEGORY_SHOWER_HEAD, 2),
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Adafruit-SHT31==1.0.2
DoorBirdPy==0.1.3

# homeassistant.components.homekit
HAP-python==2.2.2
HAP-python==2.3.0

# homeassistant.components.notify.mastodon
Mastodon.py==1.3.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requests_mock==1.5.2


# homeassistant.components.homekit
HAP-python==2.2.2
HAP-python==2.3.0

# homeassistant.components.sensor.rmvtransport
PyRMVtransport==0.1.3
Expand Down
1 change: 1 addition & 0 deletions tests/components/homekit/test_type_locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ async def test_no_code(hass, hk_driver, config, events):
# Set from HomeKit
call_lock = async_mock_service(hass, DOMAIN, 'lock')

acc.char_target_state.value = 0
await hass.async_add_job(acc.char_target_state.client_update_value, 1)
await hass.async_block_till_done()
assert call_lock
Expand Down
1 change: 1 addition & 0 deletions tests/components/homekit/test_type_media_players.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ async def test_media_player_set_state(hass, hk_driver, events):
call_media_stop = async_mock_service(hass, DOMAIN, 'media_stop')
call_toggle_mute = async_mock_service(hass, DOMAIN, 'volume_mute')

acc.chars[FEATURE_ON_OFF].value = False
await hass.async_add_job(acc.chars[FEATURE_ON_OFF]
.client_update_value, True)
await hass.async_block_till_done()
Expand Down