Bump pyatmo to 8.1.0 (#124340)
This commit is contained in:
parent
7f4fca63ed
commit
3b6128d590
5 changed files with 14 additions and 14 deletions
|
@ -12,5 +12,5 @@
|
|||
"integration_type": "hub",
|
||||
"iot_class": "cloud_polling",
|
||||
"loggers": ["pyatmo"],
|
||||
"requirements": ["pyatmo==8.0.3"]
|
||||
"requirements": ["pyatmo==8.1.0"]
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@ class NetatmoScheduleSelect(NetatmoBaseEntity, SelectEntity):
|
|||
|
||||
self._attr_current_option = getattr(self.home.get_selected_schedule(), "name")
|
||||
self._attr_options = [
|
||||
schedule.name for schedule in self.home.schedules.values()
|
||||
schedule.name for schedule in self.home.schedules.values() if schedule.name
|
||||
]
|
||||
|
||||
async def async_added_to_hass(self) -> None:
|
||||
|
@ -128,5 +128,5 @@ class NetatmoScheduleSelect(NetatmoBaseEntity, SelectEntity):
|
|||
self.home.schedules
|
||||
)
|
||||
self._attr_options = [
|
||||
schedule.name for schedule in self.home.schedules.values()
|
||||
schedule.name for schedule in self.home.schedules.values() if schedule.name
|
||||
]
|
||||
|
|
|
@ -1741,7 +1741,7 @@ pyasuswrt==0.1.21
|
|||
pyatag==0.3.5.3
|
||||
|
||||
# homeassistant.components.netatmo
|
||||
pyatmo==8.0.3
|
||||
pyatmo==8.1.0
|
||||
|
||||
# homeassistant.components.apple_tv
|
||||
pyatv==0.15.0
|
||||
|
|
|
@ -1409,7 +1409,7 @@ pyasuswrt==0.1.21
|
|||
pyatag==0.3.5.3
|
||||
|
||||
# homeassistant.components.netatmo
|
||||
pyatmo==8.0.3
|
||||
pyatmo==8.1.0
|
||||
|
||||
# homeassistant.components.apple_tv
|
||||
pyatv==0.15.0
|
||||
|
|
|
@ -1159,7 +1159,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.cold_water_power-entry]
|
||||
|
@ -1508,7 +1508,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.gas_power-entry]
|
||||
|
@ -3257,7 +3257,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.hot_water_power-entry]
|
||||
|
@ -3896,7 +3896,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.line_1_power-entry]
|
||||
|
@ -3995,7 +3995,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.line_2_power-entry]
|
||||
|
@ -4094,7 +4094,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.line_3_power-entry]
|
||||
|
@ -4193,7 +4193,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.line_4_power-entry]
|
||||
|
@ -4292,7 +4292,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.line_5_power-entry]
|
||||
|
@ -5622,7 +5622,7 @@
|
|||
'last_changed': <ANY>,
|
||||
'last_reported': <ANY>,
|
||||
'last_updated': <ANY>,
|
||||
'state': 'unavailable',
|
||||
'state': 'True',
|
||||
})
|
||||
# ---
|
||||
# name: test_entity[sensor.total_power-entry]
|
||||
|
|
Loading…
Add table
Reference in a new issue