Upgrade Adafruit-DHT to 1.3.3 (#15706)
* Change to newer pip package The package Adafruit_Python_DHT==1.3.2 was broken and would not install, breaking DHT sensor support in Home assistant. It has since been fixed in Adafruit-DHT==1.3.3. See: https://github.com/adafruit/Adafruit_Python_DHT/issues/99 * Update requirements_all.txt New or updated dependencies have been added to `requirements_all.txt` by running `script/gen_requirements_all.py`. * Comment out Adafruit-DHT Adafruit_Python_DHT changed name to Adafruit-DHT, which still need pyx support breaking our CI, need to be comment out. * Update requirements_all.txtpull/15757/head
parent
1e5596b594
commit
cf87b76b0c
|
@ -17,7 +17,7 @@ from homeassistant.helpers.entity import Entity
|
|||
from homeassistant.util import Throttle
|
||||
from homeassistant.util.temperature import celsius_to_fahrenheit
|
||||
|
||||
REQUIREMENTS = ['Adafruit_Python_DHT==1.3.2']
|
||||
REQUIREMENTS = ['Adafruit-DHT==1.3.3']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -14,6 +14,9 @@ voluptuous==0.11.3
|
|||
# homeassistant.components.nuimo_controller
|
||||
--only-binary=all nuimo==0.1.0
|
||||
|
||||
# homeassistant.components.sensor.dht
|
||||
# Adafruit-DHT==1.3.3
|
||||
|
||||
# homeassistant.components.sensor.sht31
|
||||
Adafruit-GPIO==1.0.3
|
||||
|
||||
|
@ -23,9 +26,6 @@ Adafruit-SHT31==1.0.2
|
|||
# homeassistant.components.bbb_gpio
|
||||
# Adafruit_BBIO==1.0.0
|
||||
|
||||
# homeassistant.components.sensor.dht
|
||||
# Adafruit_Python_DHT==1.3.2
|
||||
|
||||
# homeassistant.components.doorbird
|
||||
DoorBirdPy==0.1.3
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ COMMENT_REQUIREMENTS = (
|
|||
'RPi.GPIO',
|
||||
'raspihats',
|
||||
'rpi-rf',
|
||||
'Adafruit_Python_DHT',
|
||||
'Adafruit-DHT',
|
||||
'Adafruit_BBIO',
|
||||
'fritzconnection',
|
||||
'pybluez',
|
||||
|
|
Loading…
Reference in New Issue