mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 09:17:53 +00:00
Bump meteofrance-api to 1.0.1 (#44389)
This commit is contained in:
parent
f3cabe97e0
commit
369cf10eb3
@ -3,8 +3,8 @@ import asyncio
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
from meteofrance.client import MeteoFranceClient
|
||||
from meteofrance.helpers import is_valid_warning_department
|
||||
from meteofrance_api.client import MeteoFranceClient
|
||||
from meteofrance_api.helpers import is_valid_warning_department
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
||||
|
@ -1,7 +1,7 @@
|
||||
"""Config flow to configure the Meteo-France integration."""
|
||||
import logging
|
||||
|
||||
from meteofrance.client import MeteoFranceClient
|
||||
from meteofrance_api.client import MeteoFranceClient
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant import config_entries
|
||||
|
@ -4,7 +4,7 @@
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/meteo_france",
|
||||
"requirements": [
|
||||
"meteofrance-api==0.1.1"
|
||||
"meteofrance-api==1.0.1"
|
||||
],
|
||||
"codeowners": [
|
||||
"@hacf-fr",
|
||||
|
@ -1,7 +1,7 @@
|
||||
"""Support for Meteo-France raining forecast sensor."""
|
||||
import logging
|
||||
|
||||
from meteofrance.helpers import (
|
||||
from meteofrance_api.helpers import (
|
||||
get_warning_text_status_from_indice_color,
|
||||
readeable_phenomenoms_dict,
|
||||
)
|
||||
|
@ -934,7 +934,7 @@ messagebird==1.2.0
|
||||
meteoalertapi==0.1.6
|
||||
|
||||
# homeassistant.components.meteo_france
|
||||
meteofrance-api==0.1.1
|
||||
meteofrance-api==1.0.1
|
||||
|
||||
# homeassistant.components.mfi
|
||||
mficlient==0.3.0
|
||||
|
@ -462,7 +462,7 @@ mbddns==0.1.2
|
||||
mcstatus==2.3.0
|
||||
|
||||
# homeassistant.components.meteo_france
|
||||
meteofrance-api==0.1.1
|
||||
meteofrance-api==1.0.1
|
||||
|
||||
# homeassistant.components.mfi
|
||||
mficlient==0.3.0
|
||||
|
@ -1,5 +1,5 @@
|
||||
"""Tests for the Meteo-France config flow."""
|
||||
from meteofrance.model import Place
|
||||
from meteofrance_api.model import Place
|
||||
import pytest
|
||||
|
||||
from homeassistant import data_entry_flow
|
||||
|
Loading…
x
Reference in New Issue
Block a user