diff --git a/homeassistant/components/light/wink.py b/homeassistant/components/light/wink.py index d6089334fec..2a17c49089d 100644 --- a/homeassistant/components/light/wink.py +++ b/homeassistant/components/light/wink.py @@ -12,9 +12,7 @@ from homeassistant.components.light import ATTR_BRIGHTNESS from homeassistant.components.wink import WinkToggleDevice from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' - 'd3fcce7528bd031a2c05363a108628acc4eb03aa.zip' - '#python-wink==0.3.1'] +REQUIREMENTS = ['python-wink==0.3.1'] 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 8015c2b38fd..137684c398b 100644 --- a/homeassistant/components/lock/wink.py +++ b/homeassistant/components/lock/wink.py @@ -11,9 +11,7 @@ import logging from homeassistant.components.lock import LockDevice from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' - 'd3fcce7528bd031a2c05363a108628acc4eb03aa.zip' - '#python-wink==0.3.1'] +REQUIREMENTS = ['python-wink==0.3.1'] 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 dd20b99c2b1..a9529168dd6 100644 --- a/homeassistant/components/sensor/wink.py +++ b/homeassistant/components/sensor/wink.py @@ -11,9 +11,7 @@ import logging from homeassistant.helpers.entity import Entity from homeassistant.const import CONF_ACCESS_TOKEN, STATE_OPEN, STATE_CLOSED -REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' - 'd3fcce7528bd031a2c05363a108628acc4eb03aa.zip' - '#python-wink==0.3.1'] +REQUIREMENTS = ['python-wink==0.3.1'] 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 bf7c83459cc..bad1258ea6e 100644 --- a/homeassistant/components/switch/wink.py +++ b/homeassistant/components/switch/wink.py @@ -11,9 +11,7 @@ import logging from homeassistant.components.wink import WinkToggleDevice from homeassistant.const import CONF_ACCESS_TOKEN -REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' - 'd3fcce7528bd031a2c05363a108628acc4eb03aa.zip' - '#python-wink==0.3.1'] +REQUIREMENTS = ['python-wink==0.3.1'] 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 f4a500fa0b3..3a43d5eb07f 100644 --- a/homeassistant/components/wink.py +++ b/homeassistant/components/wink.py @@ -16,9 +16,7 @@ from homeassistant.const import ( ATTR_SERVICE, ATTR_DISCOVERED, ATTR_FRIENDLY_NAME) DOMAIN = "wink" -REQUIREMENTS = ['https://github.com/bradsk88/python-wink/archive/' - 'd3fcce7528bd031a2c05363a108628acc4eb03aa.zip' - '#python-wink==0.3.1'] +REQUIREMENTS = ['python-wink==0.3.1'] DISCOVER_LIGHTS = "wink.lights" DISCOVER_SWITCHES = "wink.switches"