mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
Bump Python-Roborock to 23.6 for crash fix (#94281)
* bump to 23.5 * update to 23.5
This commit is contained in:
parent
c3936e6f14
commit
dafc7a15b1
@ -6,5 +6,5 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/roborock",
|
"documentation": "https://www.home-assistant.io/integrations/roborock",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["roborock"],
|
"loggers": ["roborock"],
|
||||||
"requirements": ["python-roborock==0.23.4"]
|
"requirements": ["python-roborock==0.23.6"]
|
||||||
}
|
}
|
||||||
|
@ -2140,7 +2140,7 @@ python-qbittorrent==0.4.3
|
|||||||
python-ripple-api==0.0.3
|
python-ripple-api==0.0.3
|
||||||
|
|
||||||
# homeassistant.components.roborock
|
# homeassistant.components.roborock
|
||||||
python-roborock==0.23.4
|
python-roborock==0.23.6
|
||||||
|
|
||||||
# homeassistant.components.smarttub
|
# homeassistant.components.smarttub
|
||||||
python-smarttub==0.0.33
|
python-smarttub==0.0.33
|
||||||
|
@ -1563,7 +1563,7 @@ python-picnic-api==1.1.0
|
|||||||
python-qbittorrent==0.4.3
|
python-qbittorrent==0.4.3
|
||||||
|
|
||||||
# homeassistant.components.roborock
|
# homeassistant.components.roborock
|
||||||
python-roborock==0.23.4
|
python-roborock==0.23.6
|
||||||
|
|
||||||
# homeassistant.components.smarttub
|
# homeassistant.components.smarttub
|
||||||
python-smarttub==0.0.33
|
python-smarttub==0.0.33
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
"""Mock data for Roborock tests."""
|
"""Mock data for Roborock tests."""
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
from roborock.containers import (
|
from roborock.containers import (
|
||||||
CleanRecord,
|
CleanRecord,
|
||||||
CleanSummary,
|
CleanSummary,
|
||||||
@ -322,8 +320,6 @@ DND_TIMER = DnDTimer.from_dict(
|
|||||||
"enabled": 1,
|
"enabled": 1,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
DND_TIMER.start_time = datetime.datetime(year=2023, month=6, day=1, hour=22)
|
|
||||||
DND_TIMER.end_time = datetime.datetime(year=2023, month=6, day=2, hour=7)
|
|
||||||
|
|
||||||
STATUS = S7Status.from_dict(
|
STATUS = S7Status.from_dict(
|
||||||
{
|
{
|
||||||
|
@ -225,10 +225,16 @@
|
|||||||
'enabled': 1,
|
'enabled': 1,
|
||||||
'endHour': 7,
|
'endHour': 7,
|
||||||
'endMinute': 0,
|
'endMinute': 0,
|
||||||
'endTime': '2023-06-02T07:00:00',
|
'endTime': dict({
|
||||||
|
'__type': "<class 'datetime.time'>",
|
||||||
|
'isoformat': '07:00:00',
|
||||||
|
}),
|
||||||
'startHour': 22,
|
'startHour': 22,
|
||||||
'startMinute': 0,
|
'startMinute': 0,
|
||||||
'startTime': '2023-06-01T22:00:00',
|
'startTime': dict({
|
||||||
|
'__type': "<class 'datetime.time'>",
|
||||||
|
'isoformat': '22:00:00',
|
||||||
|
}),
|
||||||
}),
|
}),
|
||||||
'lastCleanRecord': dict({
|
'lastCleanRecord': dict({
|
||||||
'area': 20965000,
|
'area': 20965000,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user