Disable pychromecast in requirements all because protobuf dep fails on CI

This commit is contained in:
Paulus Schoutsen 2015-12-17 09:16:36 -08:00
parent 04aa4ff3a8
commit 0369f5153e
3 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@ Provides functionality to interact with Cast devices on the network.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/media_player.cast/
"""
# pylint: disable=import-error
import logging
from homeassistant.const import (

View File

@ -69,7 +69,7 @@ https://github.com/pavoni/home-assistant-vera-api/archive/efdba4e63d58a30bc9b36d
python-wink==0.3.1
# homeassistant.components.media_player.cast
pychromecast==0.6.12
# pychromecast==0.6.12
# homeassistant.components.media_player.kodi
jsonrpc-requests==0.1

View File

@ -11,7 +11,8 @@ import re
COMMENT_REQUIREMENTS = [
'RPi.GPIO',
'Adafruit_Python_DHT'
'Adafruit_Python_DHT',
'pychromecast==0.6.12'
]