mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 22:27:07 +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
|
from datetime import timedelta
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from meteofrance.client import MeteoFranceClient
|
from meteofrance_api.client import MeteoFranceClient
|
||||||
from meteofrance.helpers import is_valid_warning_department
|
from meteofrance_api.helpers import is_valid_warning_department
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"""Config flow to configure the Meteo-France integration."""
|
"""Config flow to configure the Meteo-France integration."""
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from meteofrance.client import MeteoFranceClient
|
from meteofrance_api.client import MeteoFranceClient
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant import config_entries
|
from homeassistant import config_entries
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/meteo_france",
|
"documentation": "https://www.home-assistant.io/integrations/meteo_france",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"meteofrance-api==0.1.1"
|
"meteofrance-api==1.0.1"
|
||||||
],
|
],
|
||||||
"codeowners": [
|
"codeowners": [
|
||||||
"@hacf-fr",
|
"@hacf-fr",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"""Support for Meteo-France raining forecast sensor."""
|
"""Support for Meteo-France raining forecast sensor."""
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from meteofrance.helpers import (
|
from meteofrance_api.helpers import (
|
||||||
get_warning_text_status_from_indice_color,
|
get_warning_text_status_from_indice_color,
|
||||||
readeable_phenomenoms_dict,
|
readeable_phenomenoms_dict,
|
||||||
)
|
)
|
||||||
|
@ -934,7 +934,7 @@ messagebird==1.2.0
|
|||||||
meteoalertapi==0.1.6
|
meteoalertapi==0.1.6
|
||||||
|
|
||||||
# homeassistant.components.meteo_france
|
# homeassistant.components.meteo_france
|
||||||
meteofrance-api==0.1.1
|
meteofrance-api==1.0.1
|
||||||
|
|
||||||
# homeassistant.components.mfi
|
# homeassistant.components.mfi
|
||||||
mficlient==0.3.0
|
mficlient==0.3.0
|
||||||
|
@ -462,7 +462,7 @@ mbddns==0.1.2
|
|||||||
mcstatus==2.3.0
|
mcstatus==2.3.0
|
||||||
|
|
||||||
# homeassistant.components.meteo_france
|
# homeassistant.components.meteo_france
|
||||||
meteofrance-api==0.1.1
|
meteofrance-api==1.0.1
|
||||||
|
|
||||||
# homeassistant.components.mfi
|
# homeassistant.components.mfi
|
||||||
mficlient==0.3.0
|
mficlient==0.3.0
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
"""Tests for the Meteo-France config flow."""
|
"""Tests for the Meteo-France config flow."""
|
||||||
from meteofrance.model import Place
|
from meteofrance_api.model import Place
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from homeassistant import data_entry_flow
|
from homeassistant import data_entry_flow
|
||||||
|
Loading…
x
Reference in New Issue
Block a user