Don't allow to use a old unsecure library (#12715)

* Don't allow to use a old unsecury library

* Update gen_requirements_all.py

* Cryptodome fix for python-broadlink

* Coinbase cryptodome fix
This commit is contained in:
Pascal Vizeli 2018-02-27 10:58:45 +01:00 committed by Paulus Schoutsen
parent dc8c331c68
commit 9751fed493
6 changed files with 22 additions and 10 deletions

View file

@ -19,7 +19,9 @@ from homeassistant.helpers.entity import Entity
from homeassistant.util import Throttle
import homeassistant.helpers.config_validation as cv
REQUIREMENTS = ['broadlink==0.5']
REQUIREMENTS = [
'https://github.com/balloob/python-broadlink/archive/'
'3580ff2eaccd267846f14246d6ede6e30671f7c6.zip#broadlink==0.5.1']
_LOGGER = logging.getLogger(__name__)