From 0867ace44a6b7dfce3d5279d903a009b9e676044 Mon Sep 17 00:00:00 2001
From: Jeef <jeeftor@users.noreply.github.com>
Date: Thu, 14 Mar 2024 09:55:25 -0600
Subject: [PATCH] Bump weatherflow_cloud backing lib v0.2.13 (#113181)

* bump backing lib - and switch to rest models

* ci fix
---
 homeassistant/components/weatherflow_cloud/coordinator.py | 2 +-
 homeassistant/components/weatherflow_cloud/manifest.json  | 2 +-
 homeassistant/components/weatherflow_cloud/weather.py     | 2 +-
 requirements_all.txt                                      | 2 +-
 requirements_test_all.txt                                 | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/homeassistant/components/weatherflow_cloud/coordinator.py b/homeassistant/components/weatherflow_cloud/coordinator.py
index 56554b555b0..600a5e105c9 100644
--- a/homeassistant/components/weatherflow_cloud/coordinator.py
+++ b/homeassistant/components/weatherflow_cloud/coordinator.py
@@ -4,7 +4,7 @@ from datetime import timedelta
 
 from aiohttp import ClientResponseError
 from weatherflow4py.api import WeatherFlowRestAPI
-from weatherflow4py.models.unified import WeatherFlowData
+from weatherflow4py.models.rest.unified import WeatherFlowData
 
 from homeassistant.core import HomeAssistant
 from homeassistant.exceptions import ConfigEntryAuthFailed
diff --git a/homeassistant/components/weatherflow_cloud/manifest.json b/homeassistant/components/weatherflow_cloud/manifest.json
index 72a49c0cf19..ec5bd0ffd8a 100644
--- a/homeassistant/components/weatherflow_cloud/manifest.json
+++ b/homeassistant/components/weatherflow_cloud/manifest.json
@@ -5,5 +5,5 @@
   "config_flow": true,
   "documentation": "https://www.home-assistant.io/integrations/weatherflow_cloud",
   "iot_class": "cloud_polling",
-  "requirements": ["weatherflow4py==0.1.17"]
+  "requirements": ["weatherflow4py==0.2.13"]
 }
diff --git a/homeassistant/components/weatherflow_cloud/weather.py b/homeassistant/components/weatherflow_cloud/weather.py
index 0d754eebb64..8d40fab52cb 100644
--- a/homeassistant/components/weatherflow_cloud/weather.py
+++ b/homeassistant/components/weatherflow_cloud/weather.py
@@ -2,7 +2,7 @@
 
 from __future__ import annotations
 
-from weatherflow4py.models.unified import WeatherFlowData
+from weatherflow4py.models.rest.unified import WeatherFlowData
 
 from homeassistant.components.weather import (
     Forecast,
diff --git a/requirements_all.txt b/requirements_all.txt
index 3c4faaad46c..71580e8c804 100644
--- a/requirements_all.txt
+++ b/requirements_all.txt
@@ -2833,7 +2833,7 @@ watchdog==2.3.1
 waterfurnace==1.1.0
 
 # homeassistant.components.weatherflow_cloud
-weatherflow4py==0.1.17
+weatherflow4py==0.2.13
 
 # homeassistant.components.webmin
 webmin-xmlrpc==0.0.2
diff --git a/requirements_test_all.txt b/requirements_test_all.txt
index ada8b08ee1f..9b80eb8a119 100644
--- a/requirements_test_all.txt
+++ b/requirements_test_all.txt
@@ -2174,7 +2174,7 @@ wallbox==0.6.0
 watchdog==2.3.1
 
 # homeassistant.components.weatherflow_cloud
-weatherflow4py==0.1.17
+weatherflow4py==0.2.13
 
 # homeassistant.components.webmin
 webmin-xmlrpc==0.0.2
-- 
GitLab