Skip to content
Merged

0.75.1 #15823

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/frontend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from homeassistant.loader import bind_hass
from homeassistant.util.yaml import load_yaml

REQUIREMENTS = ['home-assistant-frontend==20180803.0']
REQUIREMENTS = ['home-assistant-frontend==20180804.0']

DOMAIN = 'frontend'
DEPENDENCIES = ['api', 'websocket_api', 'http', 'system_log',
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/rfxtrx.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ def get_pt2262_device(device_id):
"""Look for the device which id matches the given device_id parameter."""
for device in RFX_DEVICES.values():
if (hasattr(device, 'is_lighting4') and
device.masked_id is not None and
device.masked_id == get_pt2262_deviceid(device_id,
device.data_bits)):
_LOGGER.debug("rfxtrx: found matching device %s for %s",
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/sensor/dht.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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__)

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Constants used by Home Assistant components."""
MAJOR_VERSION = 0
MINOR_VERSION = 75
PATCH_VERSION = '0'
PATCH_VERSION = '1'
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 5, 3)
Expand Down
6 changes: 3 additions & 3 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion script/gen_requirements_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'RPi.GPIO',
'raspihats',
'rpi-rf',
'Adafruit_Python_DHT',
'Adafruit-DHT',
'Adafruit_BBIO',
'fritzconnection',
'pybluez',
Expand Down