From f59209b2c3776f3dfe72185c9be1b1125cce6bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Arnauts?= Date: Thu, 12 Jun 2025 09:10:44 +0200 Subject: [PATCH 1/2] Bump aiocomfoconnect to 0.1.15 --- custom_components/comfoconnect/manifest.json | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/comfoconnect/manifest.json b/custom_components/comfoconnect/manifest.json index f75acd3..76a1987 100644 --- a/custom_components/comfoconnect/manifest.json +++ b/custom_components/comfoconnect/manifest.json @@ -4,7 +4,7 @@ "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/comfoconnect", "integration_type": "hub", - "requirements": ["aiocomfoconnect==0.1.14"], + "requirements": ["aiocomfoconnect==0.1.15"], "codeowners": ["@michaelarnauts"], "iot_class": "local_push", "loggers": ["aiocomfoconnect"], diff --git a/pyproject.toml b/pyproject.toml index 2b50e7f..5535ccb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ packages = [{include = "custom_components/comfoconnect"}] [tool.poetry.dependencies] python = ">=3.12,<3.13" -aiocomfoconnect = "0.1.14" +aiocomfoconnect = "0.1.15" [tool.poetry.group.dev.dependencies] homeassistant = "^2024.11.0b1" From fd6db0d6d585b8e5bc49b2b967007b45cfa01511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Arnauts?= Date: Thu, 12 Jun 2025 09:12:07 +0200 Subject: [PATCH 2/2] Run tests on Python 3.13 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b68ea41..e4a7119 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: [ "3.12" ] + python-version: [ "3.13" ] steps: - name: Check out ${{ github.sha }} from repository ${{ github.repository }} uses: actions/checkout@v4