Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8086ea5
Bump pip from 23.3.1 to 25.2
dependabot[bot] Sep 24, 2025
07ec2f0
Delete poetry.lock
HiDiHo01 Dec 27, 2025
33267c1
Merge branch 'master' into dependabot/pip/pip-25.2
HiDiHo01 Dec 27, 2025
f7d69a8
Add Python setup step for linting workflow
HiDiHo01 Dec 27, 2025
3d2026d
Merge pull request #1 from HiDiHo01/dependabot/pip/pip-25.2
HiDiHo01 Dec 27, 2025
320a691
Detected code that relies on ContextVar
HiDiHo01 Jan 23, 2026
e46ab75
Merge branch 'master' into master
HiDiHo01 Jan 23, 2026
fd4422e
Bump pynacl from 1.5.0 to 1.6.2
dependabot[bot] Jan 23, 2026
698194b
Bump urllib3 from 2.5.0 to 2.6.3
dependabot[bot] Jan 23, 2026
d58d546
Merge branch 'leikoilja:master' into master
HiDiHo01 Jan 24, 2026
fc3b6ad
Merge branch 'leikoilja:master' into master
HiDiHo01 May 4, 2026
98ad7a9
Upgrade cryptography package to version 48.0.0
HiDiHo01 Jun 10, 2026
69f26df
Merge pull request #3 from HiDiHo01/dependabot/uv/pynacl-1.6.2
HiDiHo01 Jun 10, 2026
fd006d8
Merge pull request #4 from HiDiHo01/dependabot/uv/urllib3-2.6.3
HiDiHo01 Jun 10, 2026
517bc89
Bump h11 from 0.14.0 to 0.16.0
dependabot[bot] Jan 23, 2026
7c86b96
Bump protobuf from 6.31.1 to 6.33.5
dependabot[bot] Feb 5, 2026
6f8328a
Bump pygments from 2.19.2 to 2.20.0
dependabot[bot] Mar 30, 2026
0099bb3
Bump litellm from 1.81.1 to 1.83.0
dependabot[bot] Apr 3, 2026
3a4f0c9
Bump pytest from 9.0.2 to 9.0.3
dependabot[bot] Apr 14, 2026
be1c0dc
Bump python-dotenv from 1.2.1 to 1.2.2
dependabot[bot] Apr 21, 2026
2aa82a7
Merge branch 'leikoilja:master' into master
HiDiHo01 Jun 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
steps:
- name: Check out the repository
uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
python-version: '3.13' # Use 3.13 for PyO3 compatibility
- name: Prepare and install deps
uses: ./.github/actions/install-deps

Expand Down
3 changes: 2 additions & 1 deletion custom_components/google_home/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
https://github.com/leikoilja/ha-google-home
"""

from datetime import timedelta
import logging
from datetime import timedelta
from typing import TYPE_CHECKING, cast

from homeassistant.components import zeroconf
Expand Down Expand Up @@ -70,6 +70,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: GoogleHomeConfigEntry) -
hass,
_LOGGER,
name=SENSOR,
config_entry=entry,
update_method=glocaltokens_client.update_google_devices_information,
update_interval=timedelta(seconds=update_interval),
config_entry=entry,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dev = [
"mypy>=1.19.1",
"PyGithub>=2.6",
"pylint>=4.0.4",
"pytest>=9.0.2",
"pytest>=9.0.3",
"ruff>=0.14.4",
"types-requests>=2.32.4.20260107",
"voluptuous-stubs>=0.1.1",
Expand Down
Loading
Loading