mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 01:37:08 +00:00
Upgrade numpy to 1.16.3 (#23673)
This commit is contained in:
parent
f0f6787bf9
commit
1ecb3de643
@ -37,21 +37,18 @@ DEFAULT_SCAN_INTERVAL = timedelta(minutes=30)
|
|||||||
|
|
||||||
FETCHER_MAPPING = {
|
FETCHER_MAPPING = {
|
||||||
(TYPE_ALLERGY_FORECAST,): (TYPE_ALLERGY_FORECAST, TYPE_ALLERGY_OUTLOOK),
|
(TYPE_ALLERGY_FORECAST,): (TYPE_ALLERGY_FORECAST, TYPE_ALLERGY_OUTLOOK),
|
||||||
(TYPE_ALLERGY_TODAY, TYPE_ALLERGY_TOMORROW): (
|
(TYPE_ALLERGY_TODAY, TYPE_ALLERGY_TOMORROW): (TYPE_ALLERGY_INDEX,),
|
||||||
TYPE_ALLERGY_INDEX,),
|
|
||||||
(TYPE_ASTHMA_FORECAST,): (TYPE_ASTHMA_FORECAST,),
|
(TYPE_ASTHMA_FORECAST,): (TYPE_ASTHMA_FORECAST,),
|
||||||
(TYPE_ASTHMA_TODAY, TYPE_ASTHMA_TOMORROW): (
|
(TYPE_ASTHMA_TODAY, TYPE_ASTHMA_TOMORROW): (TYPE_ASTHMA_INDEX,),
|
||||||
TYPE_ASTHMA_INDEX,),
|
|
||||||
(TYPE_DISEASE_FORECAST,): (TYPE_DISEASE_FORECAST,),
|
(TYPE_DISEASE_FORECAST,): (TYPE_DISEASE_FORECAST,),
|
||||||
(TYPE_DISEASE_TODAY,): (TYPE_DISEASE_INDEX,),
|
(TYPE_DISEASE_TODAY,): (TYPE_DISEASE_INDEX,),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
CONFIG_SCHEMA = vol.Schema({
|
CONFIG_SCHEMA = vol.Schema({
|
||||||
DOMAIN: vol.Schema({
|
DOMAIN: vol.Schema({
|
||||||
vol.Required(CONF_ZIP_CODE): str,
|
vol.Required(CONF_ZIP_CODE): str,
|
||||||
vol.Required(CONF_MONITORED_CONDITIONS, default=list(SENSORS)):
|
vol.Required(CONF_MONITORED_CONDITIONS, default=list(SENSORS)):
|
||||||
vol.All(cv.ensure_list, [vol.In(SENSORS)])
|
vol.All(cv.ensure_list, [vol.In(SENSORS)]),
|
||||||
})
|
})
|
||||||
}, extra=vol.ALLOW_EXTRA)
|
}, extra=vol.ALLOW_EXTRA)
|
||||||
|
|
||||||
@ -87,8 +84,7 @@ async def async_setup(hass, config):
|
|||||||
async_dispatcher_send(hass, TOPIC_DATA_UPDATE)
|
async_dispatcher_send(hass, TOPIC_DATA_UPDATE)
|
||||||
|
|
||||||
hass.data[DOMAIN][DATA_LISTENER] = async_track_time_interval(
|
hass.data[DOMAIN][DATA_LISTENER] = async_track_time_interval(
|
||||||
hass, refresh,
|
hass, refresh, DEFAULT_SCAN_INTERVAL)
|
||||||
DEFAULT_SCAN_INTERVAL)
|
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "IQVIA",
|
"name": "IQVIA",
|
||||||
"documentation": "https://www.home-assistant.io/components/iqvia",
|
"documentation": "https://www.home-assistant.io/components/iqvia",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"numpy==1.16.2",
|
"numpy==1.16.3",
|
||||||
"pyiqvia==0.2.0"
|
"pyiqvia==0.2.0"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "Opencv",
|
"name": "Opencv",
|
||||||
"documentation": "https://www.home-assistant.io/components/opencv",
|
"documentation": "https://www.home-assistant.io/components/opencv",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"numpy==1.16.2"
|
"numpy==1.16.3"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": []
|
"codeowners": []
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "Tensorflow",
|
"name": "Tensorflow",
|
||||||
"documentation": "https://www.home-assistant.io/components/tensorflow",
|
"documentation": "https://www.home-assistant.io/components/tensorflow",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"numpy==1.16.2",
|
"numpy==1.16.3",
|
||||||
"pillow==5.4.1",
|
"pillow==5.4.1",
|
||||||
"protobuf==3.6.1"
|
"protobuf==3.6.1"
|
||||||
],
|
],
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "Trend",
|
"name": "Trend",
|
||||||
"documentation": "https://www.home-assistant.io/components/trend",
|
"documentation": "https://www.home-assistant.io/components/trend",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"numpy==1.16.2"
|
"numpy==1.16.3"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": []
|
"codeowners": []
|
||||||
|
@ -782,7 +782,7 @@ nuheat==0.3.0
|
|||||||
# homeassistant.components.opencv
|
# homeassistant.components.opencv
|
||||||
# homeassistant.components.tensorflow
|
# homeassistant.components.tensorflow
|
||||||
# homeassistant.components.trend
|
# homeassistant.components.trend
|
||||||
numpy==1.16.2
|
numpy==1.16.3
|
||||||
|
|
||||||
# homeassistant.components.oasa_telematics
|
# homeassistant.components.oasa_telematics
|
||||||
oasatelematics==0.3
|
oasatelematics==0.3
|
||||||
|
@ -182,7 +182,7 @@ mficlient==0.3.0
|
|||||||
# homeassistant.components.opencv
|
# homeassistant.components.opencv
|
||||||
# homeassistant.components.tensorflow
|
# homeassistant.components.tensorflow
|
||||||
# homeassistant.components.trend
|
# homeassistant.components.trend
|
||||||
numpy==1.16.2
|
numpy==1.16.3
|
||||||
|
|
||||||
# homeassistant.components.google
|
# homeassistant.components.google
|
||||||
oauth2client==4.0.0
|
oauth2client==4.0.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user