mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Phue: Switched to GIT-version because pip version lacks behind
This commit is contained in:
parent
542e6b9536
commit
d56edd46bb
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -4,3 +4,6 @@
|
|||||||
[submodule "homeassistant/external/pywemo"]
|
[submodule "homeassistant/external/pywemo"]
|
||||||
path = homeassistant/external/pywemo
|
path = homeassistant/external/pywemo
|
||||||
url = https://github.com/balloob/pywemo.git
|
url = https://github.com/balloob/pywemo.git
|
||||||
|
[submodule "homeassistant/external/phue"]
|
||||||
|
path = homeassistant/external/phue
|
||||||
|
url = https://github.com/studioimaginaire/phue.git
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
FROM python:3-onbuild
|
FROM python:3-onbuild
|
||||||
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
||||||
|
|
||||||
# Temporary fix while waiting for new version of phue to be released
|
|
||||||
RUN curl https://raw.githubusercontent.com/studioimaginaire/phue/master/phue.py -o phue.py
|
|
||||||
|
|
||||||
VOLUME /config
|
VOLUME /config
|
||||||
|
|
||||||
EXPOSE 8123
|
EXPOSE 8123
|
||||||
|
@ -362,7 +362,7 @@ class HueLightControl(object):
|
|||||||
host = config.get(ha.CONF_HOST, None)
|
host = config.get(ha.CONF_HOST, None)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import phue
|
import homeassistant.external.phue.phue as phue
|
||||||
except ImportError:
|
except ImportError:
|
||||||
logger.exception(
|
logger.exception(
|
||||||
"HueLightControl:Error while importing dependency phue.")
|
"HueLightControl:Error while importing dependency phue.")
|
||||||
|
1
homeassistant/external/phue
vendored
Submodule
1
homeassistant/external/phue
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit c96d8d5dbe08adfe3919734c1c8403cd7ec4873e
|
@ -1,5 +1,4 @@
|
|||||||
requests>=2.0
|
requests>=2.0
|
||||||
phue>=0.7
|
|
||||||
pychromecast>=0.5
|
pychromecast>=0.5
|
||||||
pyephem>=3.7
|
pyephem>=3.7
|
||||||
pyuserinput>=0.1.9
|
pyuserinput>=0.1.9
|
||||||
|
Loading…
x
Reference in New Issue
Block a user