Upgrade numpy to 1.16.1 (#21190)
This commit is contained in:
parent
98c3c02daa
commit
e3cfcbad69
6 changed files with 9 additions and 27 deletions
|
@ -1,9 +1,4 @@
|
||||||
"""
|
"""A sensor that monitors trends in other components."""
|
||||||
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/
|
|
||||||
"""
|
|
||||||
from collections import deque
|
from collections import deque
|
||||||
import logging
|
import logging
|
||||||
import math
|
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.helpers.event import async_track_state_change
|
||||||
from homeassistant.util import utcnow
|
from homeassistant.util import utcnow
|
||||||
|
|
||||||
REQUIREMENTS = ['numpy==1.16.0']
|
REQUIREMENTS = ['numpy==1.16.1']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ from homeassistant.components.image_processing import (
|
||||||
from homeassistant.core import split_entity_id
|
from homeassistant.core import split_entity_id
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['numpy==1.16.0']
|
REQUIREMENTS = ['numpy==1.16.1']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,4 @@
|
||||||
"""
|
"""Support for performing TensorFlow classification on images."""
|
||||||
Support for performing TensorFlow classification on images.
|
|
||||||
|
|
||||||
For a quick start, pick a pre-trained COCO model from:
|
|
||||||
https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md
|
|
||||||
|
|
||||||
For more details about this platform, please refer to the documentation at
|
|
||||||
https://home-assistant.io/components/image_processing.tensorflow/
|
|
||||||
"""
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -20,7 +12,7 @@ from homeassistant.core import split_entity_id
|
||||||
from homeassistant.helpers import template
|
from homeassistant.helpers import template
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['numpy==1.16.0', 'pillow==5.4.1', 'protobuf==3.6.1']
|
REQUIREMENTS = ['numpy==1.16.1', 'pillow==5.4.1', 'protobuf==3.6.1']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
"""
|
"""Support for Pollen.com allergen and cold/flu sensors."""
|
||||||
Support for Pollen.com allergen and cold/flu sensors.
|
|
||||||
|
|
||||||
For more details about this platform, please refer to the documentation at
|
|
||||||
https://home-assistant.io/components/sensor.pollen/
|
|
||||||
"""
|
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
import logging
|
import logging
|
||||||
from statistics import mean
|
from statistics import mean
|
||||||
|
@ -18,7 +13,7 @@ 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 = ['numpy==1.16.0', 'pypollencom==2.2.2']
|
REQUIREMENTS = ['numpy==1.16.1', 'pypollencom==2.2.2']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -752,7 +752,7 @@ nuheat==0.3.0
|
||||||
# homeassistant.components.image_processing.opencv
|
# homeassistant.components.image_processing.opencv
|
||||||
# homeassistant.components.image_processing.tensorflow
|
# homeassistant.components.image_processing.tensorflow
|
||||||
# homeassistant.components.sensor.pollen
|
# homeassistant.components.sensor.pollen
|
||||||
numpy==1.16.0
|
numpy==1.16.1
|
||||||
|
|
||||||
# homeassistant.components.google
|
# homeassistant.components.google
|
||||||
oauth2client==4.0.0
|
oauth2client==4.0.0
|
||||||
|
|
|
@ -151,7 +151,7 @@ mficlient==0.3.0
|
||||||
# homeassistant.components.image_processing.opencv
|
# homeassistant.components.image_processing.opencv
|
||||||
# homeassistant.components.image_processing.tensorflow
|
# homeassistant.components.image_processing.tensorflow
|
||||||
# homeassistant.components.sensor.pollen
|
# homeassistant.components.sensor.pollen
|
||||||
numpy==1.16.0
|
numpy==1.16.1
|
||||||
|
|
||||||
# homeassistant.components.mqtt
|
# homeassistant.components.mqtt
|
||||||
# homeassistant.components.shiftr
|
# homeassistant.components.shiftr
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue