From 5891a5381e9e48ebfdd95d0c49f0aa537059c1b9 Mon Sep 17 00:00:00 2001 From: Thomas D <11554546+thomasddn@users.noreply.github.com> Date: Sun, 8 Dec 2024 12:34:36 +0000 Subject: [PATCH] Allow pydantic version <2.0 --- custom_components/volvo_cars/manifest.json | 4 ++-- requirements.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/custom_components/volvo_cars/manifest.json b/custom_components/volvo_cars/manifest.json index b30e1e8..99036d6 100644 --- a/custom_components/volvo_cars/manifest.json +++ b/custom_components/volvo_cars/manifest.json @@ -9,7 +9,7 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/thomasddn/ha-volvo-cars/issues", "requirements": [ - "pydantic==1.10.18" + "pydantic>=1.10.18,<2.0" ], - "version": "0.2.0" + "version": "0.2.1" } \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index f192466..06a2a23 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ colorlog==6.8.2 -homeassistant==2024.11.0 +homeassistant==2024.12.0 pip>=21.3.1 ruff==0.6.7 -pydantic==1.10.18 \ No newline at end of file +pydantic>=1.10.18,<2.0 \ No newline at end of file