mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 22:37:11 +00:00
Upgrade youtube_dl to 2017.10.29 (#10202)
This commit is contained in:
parent
115c59d88c
commit
e91ed1f2a4
@ -6,6 +6,7 @@ https://home-assistant.io/components/media_extractor/
|
||||
"""
|
||||
import logging
|
||||
import os
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.components.media_player import (
|
||||
@ -15,16 +16,16 @@ from homeassistant.components.media_player import (
|
||||
from homeassistant.config import load_yaml_config_file
|
||||
from homeassistant.helpers import config_validation as cv
|
||||
|
||||
REQUIREMENTS = ['youtube_dl==2017.10.20']
|
||||
REQUIREMENTS = ['youtube_dl==2017.10.29']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
DOMAIN = 'media_extractor'
|
||||
DEPENDENCIES = ['media_player']
|
||||
|
||||
CONF_CUSTOMIZE_ENTITIES = 'customize'
|
||||
CONF_DEFAULT_STREAM_QUERY = 'default_query'
|
||||
|
||||
DEFAULT_STREAM_QUERY = 'best'
|
||||
DEPENDENCIES = ['media_player']
|
||||
DOMAIN = 'media_extractor'
|
||||
|
||||
CONFIG_SCHEMA = vol.Schema({
|
||||
DOMAIN: vol.Schema({
|
||||
|
@ -1135,7 +1135,7 @@ yeelight==0.3.3
|
||||
yeelightsunflower==0.0.8
|
||||
|
||||
# homeassistant.components.media_extractor
|
||||
youtube_dl==2017.10.20
|
||||
youtube_dl==2017.10.29
|
||||
|
||||
# homeassistant.components.light.zengge
|
||||
zengge==0.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user