Skip to content

Commit

Permalink
2023.10.3 (#101930)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Oct 13, 2023
2 parents f5b5215 + 8b8df2e commit 93d7ff3
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 8 deletions.
3 changes: 3 additions & 0 deletions homeassistant/components/reolink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ async def async_check_firmware_update() -> str | Literal[False]:
try:
return await host.api.check_new_firmware()
except (ReolinkError, asyncio.exceptions.CancelledError) as err:
task = asyncio.current_task()
if task is not None:
task.uncancel()
if starting:
_LOGGER.debug(
"Error checking Reolink firmware update at startup "
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/reolink/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"documentation": "https://www.home-assistant.io/integrations/reolink",
"iot_class": "local_push",
"loggers": ["reolink_aio"],
"requirements": ["reolink-aio==0.7.10"]
"requirements": ["reolink-aio==0.7.11"]
}
1 change: 1 addition & 0 deletions homeassistant/components/sensibo/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
AVAILABLE_FAN_MODES = {
"quiet",
"low",
"medium_low",
"medium",
"medium_high",
"high",
Expand Down
3 changes: 3 additions & 0 deletions homeassistant/components/sensibo/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"auto": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::auto%]",
"high": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::high%]",
"low": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::low%]",
"medium_low": "Medium low",
"medium": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::medium%]",
"medium_high": "Medium high",
"strong": "Strong",
Expand Down Expand Up @@ -210,6 +211,7 @@
"auto": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::auto%]",
"high": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::high%]",
"low": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::low%]",
"medium_low": "[%key:component::sensibo::entity::sensor::climate_react_low::state_attributes::fanlevel::state::medium_low%]",
"medium": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::medium%]",
"medium_high": "[%key:component::sensibo::entity::sensor::climate_react_low::state_attributes::fanlevel::state::medium_high%]",
"strong": "[%key:component::sensibo::entity::sensor::climate_react_low::state_attributes::fanlevel::state::strong%]",
Expand Down Expand Up @@ -351,6 +353,7 @@
"quiet": "Quiet",
"strong": "Strong",
"low": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::low%]",
"medium_low": "Medium low",
"medium": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::medium%]",
"medium_high": "Medium high",
"high": "[%key:component::climate::entity_component::_::state_attributes::fan_mode::state::high%]",
Expand Down
2 changes: 2 additions & 0 deletions homeassistant/components/wiz/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ async def async_setup_entry(
class WizSocketEntity(WizToggleEntity, SwitchEntity):
"""Representation of a WiZ socket."""

_attr_name = None

def __init__(self, wiz_data: WizData, name: str) -> None:
"""Initialize a WiZ socket."""
super().__init__(wiz_data, name)
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
APPLICATION_NAME: Final = "HomeAssistant"
MAJOR_VERSION: Final = 2023
MINOR_VERSION: Final = 10
PATCH_VERSION: Final = "2"
PATCH_VERSION: Final = "3"
__short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__: Final = f"{__short_version__}.{PATCH_VERSION}"
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 11, 0)
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiodiscover==1.5.1
aiohttp==3.8.6
aiohttp==3.8.5
aiohttp_cors==0.7.0
astral==2.2
async-upnp-client==0.36.1
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "homeassistant"
version = "2023.10.2"
version = "2023.10.3"
license = {text = "Apache-2.0"}
description = "Open-source home automation platform running on Python 3."
readme = "README.rst"
Expand All @@ -23,7 +23,7 @@ classifiers = [
]
requires-python = ">=3.11.0"
dependencies = [
"aiohttp==3.8.6",
"aiohttp==3.8.5",
"astral==2.2",
"attrs==23.1.0",
"atomicwrites-homeassistant==1.4.1",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-c homeassistant/package_constraints.txt

# Home Assistant Core
aiohttp==3.8.6
aiohttp==3.8.5
astral==2.2
attrs==23.1.0
atomicwrites-homeassistant==1.4.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2309,7 +2309,7 @@ renault-api==0.2.0
renson-endura-delta==1.6.0

# homeassistant.components.reolink
reolink-aio==0.7.10
reolink-aio==0.7.11

# homeassistant.components.idteck_prox
rfk101py==0.0.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,7 @@ renault-api==0.2.0
renson-endura-delta==1.6.0

# homeassistant.components.reolink
reolink-aio==0.7.10
reolink-aio==0.7.11

# homeassistant.components.rflink
rflink==0.0.65
Expand Down

0 comments on commit 93d7ff3

Please sign in to comment.