diff --git a/homeassistant/components/light/wink.py b/homeassistant/components/light/wink.py index 7c19fe3a863..7d14c97dedb 100644 --- a/homeassistant/components/light/wink.py +++ b/homeassistant/components/light/wink.py @@ -12,9 +12,9 @@ from homeassistant.components.light import ATTR_BRIGHTNESS from homeassistant.components.wink import WinkToggleDevice from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/balloob/python-wink/archive/' - 'e66277ddb8ba51df34e810f784088c3c8582984a.zip' - '#python-wink==0.2.1'] +REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' + '91c8e9a5df24c8dd1a5267dc29a00a40c11d826a.zip' + '#python-wink==0.3.0'] def setup_platform(hass, config, add_devices_callback, discovery_info=None): """ Find and return Wink lights. """ diff --git a/homeassistant/components/lock/wink.py b/homeassistant/components/lock/wink.py index ad24278de0f..ba712baba08 100644 --- a/homeassistant/components/lock/wink.py +++ b/homeassistant/components/lock/wink.py @@ -11,9 +11,9 @@ import logging from homeassistant.components.lock import LockDevice from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/balloob/python-wink/archive/' - 'e66277ddb8ba51df34e810f784088c3c8582984a.zip' - '#python-wink==0.2.1'] +REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' + '91c8e9a5df24c8dd1a5267dc29a00a40c11d826a.zip' + '#python-wink==0.3.0'] def setup_platform(hass, config, add_devices, discovery_info=None): """ Sets up the Wink platform. """ diff --git a/homeassistant/components/sensor/wink-eggminder.py b/homeassistant/components/sensor/wink-eggminder.py index 931ea857647..b8b6e2937d6 100755 --- a/homeassistant/components/sensor/wink-eggminder.py +++ b/homeassistant/components/sensor/wink-eggminder.py @@ -10,9 +10,9 @@ import logging from homeassistant.helpers.entity import Entity from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/balloob/python-wink/archive/' - 'e66277ddb8ba51df34e810f784088c3c8582984a.zip' - '#python-wink==0.2.1'] +REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' + '91c8e9a5df24c8dd1a5267dc29a00a40c11d826a.zip' + '#python-wink==0.3.0'] def setup_platform(hass, config, add_devices, discovery_info=None): """ Sets up the Wink platform. """ diff --git a/homeassistant/components/sensor/wink.py b/homeassistant/components/sensor/wink.py index 501f82fd13d..e0ed4d6e444 100644 --- a/homeassistant/components/sensor/wink.py +++ b/homeassistant/components/sensor/wink.py @@ -11,9 +11,9 @@ import logging from homeassistant.helpers.entity import Entity from homeassistant.const import CONF_ACCESS_TOKEN, STATE_OPEN, STATE_CLOSED -REQUIREMENTS = ['https://github.com/balloob/python-wink/archive/' - 'e66277ddb8ba51df34e810f784088c3c8582984a.zip' - '#python-wink==0.2.1'] +REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' + '91c8e9a5df24c8dd1a5267dc29a00a40c11d826a.zip' + '#python-wink==0.3.0'] def setup_platform(hass, config, add_devices, discovery_info=None): """ Sets up the Wink platform. """ diff --git a/homeassistant/components/switch/wink.py b/homeassistant/components/switch/wink.py index 24a868398af..c3fdea2027e 100644 --- a/homeassistant/components/switch/wink.py +++ b/homeassistant/components/switch/wink.py @@ -11,9 +11,9 @@ import logging from homeassistant.components.wink import WinkToggleDevice from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/balloob/python-wink/archive/' - 'e66277ddb8ba51df34e810f784088c3c8582984a.zip' - '#python-wink==0.2.1'] +REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' + '91c8e9a5df24c8dd1a5267dc29a00a40c11d826a.zip' + '#python-wink==0.3.0'] def setup_platform(hass, config, add_devices, discovery_info=None): """ Sets up the Wink platform. """ diff --git a/homeassistant/components/wink.py b/homeassistant/components/wink.py index a9cb512a074..ee15a19791b 100644 --- a/homeassistant/components/wink.py +++ b/homeassistant/components/wink.py @@ -16,9 +16,9 @@ from homeassistant.const import ( ATTR_SERVICE, ATTR_DISCOVERED, ATTR_FRIENDLY_NAME) DOMAIN = "wink" -REQUIREMENTS = ['https://github.com/balloob/python-wink/archive/' - 'e66277ddb8ba51df34e810f784088c3c8582984a.zip' - '#python-wink==0.2.1'] +REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' + '91c8e9a5df24c8dd1a5267dc29a00a40c11d826a.zip' + '#python-wink==0.3.0'] DISCOVER_LIGHTS = "wink.lights" DISCOVER_SWITCHES = "wink.switches"