sensor.envirophat: add missing requirement (#7451)
Adding requirements that is not explicitly pulled in by the library that manages the Enviro pHAT.pull/7444/head
parent
94f7c397d7
commit
abe6f9343f
|
@ -15,7 +15,8 @@ import homeassistant.helpers.config_validation as cv
|
||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
from homeassistant.util import Throttle
|
from homeassistant.util import Throttle
|
||||||
|
|
||||||
REQUIREMENTS = ['envirophat==0.0.6']
|
REQUIREMENTS = ['envirophat==0.0.6',
|
||||||
|
'smbus-cffi==0.5.1']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -764,6 +764,9 @@ sleekxmpp==1.3.2
|
||||||
# homeassistant.components.sleepiq
|
# homeassistant.components.sleepiq
|
||||||
sleepyq==0.6
|
sleepyq==0.6
|
||||||
|
|
||||||
|
# homeassistant.components.sensor.envirophat
|
||||||
|
smbus-cffi==0.5.1
|
||||||
|
|
||||||
# homeassistant.components.media_player.snapcast
|
# homeassistant.components.media_player.snapcast
|
||||||
snapcast==1.2.2
|
snapcast==1.2.2
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue