Upgrade numpy to 1.16.1 (#21190)

This commit is contained in:
Fabian Affolter 2019-02-19 16:04:56 +01:00 committed by GitHub
parent 98c3c02daa
commit e3cfcbad69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 27 deletions

View file

@ -1,9 +1,4 @@
"""
A sensor that monitors trends in other components.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.trend/
"""
"""A sensor that monitors trends in other components."""
from collections import deque
import logging
import math
@ -22,7 +17,7 @@ from homeassistant.helpers.entity import generate_entity_id
from homeassistant.helpers.event import async_track_state_change
from homeassistant.util import utcnow
REQUIREMENTS = ['numpy==1.16.0']
REQUIREMENTS = ['numpy==1.16.1']
_LOGGER = logging.getLogger(__name__)