Upgrade numpy to 1.16.3 (#23673)
This commit is contained in:
parent
f0f6787bf9
commit
1ecb3de643
7 changed files with 10 additions and 14 deletions
|
@ -37,21 +37,18 @@ DEFAULT_SCAN_INTERVAL = timedelta(minutes=30)
|
|||
|
||||
FETCHER_MAPPING = {
|
||||
(TYPE_ALLERGY_FORECAST,): (TYPE_ALLERGY_FORECAST, TYPE_ALLERGY_OUTLOOK),
|
||||
(TYPE_ALLERGY_TODAY, TYPE_ALLERGY_TOMORROW): (
|
||||
TYPE_ALLERGY_INDEX,),
|
||||
(TYPE_ALLERGY_TODAY, TYPE_ALLERGY_TOMORROW): (TYPE_ALLERGY_INDEX,),
|
||||
(TYPE_ASTHMA_FORECAST,): (TYPE_ASTHMA_FORECAST,),
|
||||
(TYPE_ASTHMA_TODAY, TYPE_ASTHMA_TOMORROW): (
|
||||
TYPE_ASTHMA_INDEX,),
|
||||
(TYPE_ASTHMA_TODAY, TYPE_ASTHMA_TOMORROW): (TYPE_ASTHMA_INDEX,),
|
||||
(TYPE_DISEASE_FORECAST,): (TYPE_DISEASE_FORECAST,),
|
||||
(TYPE_DISEASE_TODAY,): (TYPE_DISEASE_INDEX,),
|
||||
}
|
||||
|
||||
|
||||
CONFIG_SCHEMA = vol.Schema({
|
||||
DOMAIN: vol.Schema({
|
||||
vol.Required(CONF_ZIP_CODE): str,
|
||||
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)
|
||||
|
||||
|
@ -87,8 +84,7 @@ async def async_setup(hass, config):
|
|||
async_dispatcher_send(hass, TOPIC_DATA_UPDATE)
|
||||
|
||||
hass.data[DOMAIN][DATA_LISTENER] = async_track_time_interval(
|
||||
hass, refresh,
|
||||
DEFAULT_SCAN_INTERVAL)
|
||||
hass, refresh, DEFAULT_SCAN_INTERVAL)
|
||||
|
||||
return True
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "IQVIA",
|
||||
"documentation": "https://www.home-assistant.io/components/iqvia",
|
||||
"requirements": [
|
||||
"numpy==1.16.2",
|
||||
"numpy==1.16.3",
|
||||
"pyiqvia==0.2.0"
|
||||
],
|
||||
"dependencies": [],
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Opencv",
|
||||
"documentation": "https://www.home-assistant.io/components/opencv",
|
||||
"requirements": [
|
||||
"numpy==1.16.2"
|
||||
"numpy==1.16.3"
|
||||
],
|
||||
"dependencies": [],
|
||||
"codeowners": []
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Tensorflow",
|
||||
"documentation": "https://www.home-assistant.io/components/tensorflow",
|
||||
"requirements": [
|
||||
"numpy==1.16.2",
|
||||
"numpy==1.16.3",
|
||||
"pillow==5.4.1",
|
||||
"protobuf==3.6.1"
|
||||
],
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Trend",
|
||||
"documentation": "https://www.home-assistant.io/components/trend",
|
||||
"requirements": [
|
||||
"numpy==1.16.2"
|
||||
"numpy==1.16.3"
|
||||
],
|
||||
"dependencies": [],
|
||||
"codeowners": []
|
||||
|
|
|
@ -782,7 +782,7 @@ nuheat==0.3.0
|
|||
# homeassistant.components.opencv
|
||||
# homeassistant.components.tensorflow
|
||||
# homeassistant.components.trend
|
||||
numpy==1.16.2
|
||||
numpy==1.16.3
|
||||
|
||||
# homeassistant.components.oasa_telematics
|
||||
oasatelematics==0.3
|
||||
|
|
|
@ -182,7 +182,7 @@ mficlient==0.3.0
|
|||
# homeassistant.components.opencv
|
||||
# homeassistant.components.tensorflow
|
||||
# homeassistant.components.trend
|
||||
numpy==1.16.2
|
||||
numpy==1.16.3
|
||||
|
||||
# homeassistant.components.google
|
||||
oauth2client==4.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue