From b50b4cab42683f0ef679833415503d43fa244425 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Tue, 28 Jan 2025 08:35:21 -0800 Subject: [PATCH] Chore: Force update of requirements The previous version of icalendar is no longer in sync with the version that is used by core Home Assistant. Make sure that installing the integration uses the correct version and also forces an upgrade of x-wr-timezone to the latest version. Finally, since HA 2025.1.0 is the version that explicitly starts using icalendar 6.1.0, make sure that is the base version needed. Signed-off-by: Andrew Grimberg --- custom_components/rental_control/manifest.json | 2 +- hacs.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/rental_control/manifest.json b/custom_components/rental_control/manifest.json index 8ccd282..77022da 100644 --- a/custom_components/rental_control/manifest.json +++ b/custom_components/rental_control/manifest.json @@ -9,6 +9,6 @@ "integration_type": "service", "iot_class": "cloud_polling", "issue_tracker": "https://github.com/tykeal/homeassistant-rental-control/issues", - "requirements": ["icalendar", "x-wr-timezone"], + "requirements": ["icalendar>=6.1.0", "x-wr-timezone>=2.0.0"], "version": "v0.0.0" } diff --git a/hacs.json b/hacs.json index a794e6e..6611d3c 100644 --- a/hacs.json +++ b/hacs.json @@ -3,5 +3,5 @@ "hacs": "1.32.1", "zip_release": true, "filename": "rental_control.zip", - "homeassistant": "2024.5.0" + "homeassistant": "2025.1.0" }