Upgrade numpy to 1.16.3 (#23673)

This commit is contained in:
Fabian Affolter 2019-05-08 09:17:41 +02:00 committed by GitHub
parent f0f6787bf9
commit 1ecb3de643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 14 deletions

View file

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

View file

@ -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": [],

View file

@ -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": []

View file

@ -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"
],

View file

@ -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": []

View file

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

View file

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