mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 08:47:10 +00:00
Bump aiomealie to 0.8.0 (#122295)
* Bump aiomealie to 0.8.0 * Bump aiomealie to 0.8.0
This commit is contained in:
parent
a8cbfe5159
commit
7f82fb8cb8
@ -6,5 +6,5 @@
|
|||||||
"documentation": "https://www.home-assistant.io/integrations/mealie",
|
"documentation": "https://www.home-assistant.io/integrations/mealie",
|
||||||
"integration_type": "service",
|
"integration_type": "service",
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"requirements": ["aiomealie==0.7.0"]
|
"requirements": ["aiomealie==0.8.0"]
|
||||||
}
|
}
|
||||||
|
@ -4,11 +4,7 @@ from dataclasses import asdict
|
|||||||
from datetime import date
|
from datetime import date
|
||||||
from typing import cast
|
from typing import cast
|
||||||
|
|
||||||
from aiomealie.exceptions import (
|
from aiomealie import MealieConnectionError, MealieNotFoundError, MealieValidationError
|
||||||
MealieConnectionError,
|
|
||||||
MealieNotFoundError,
|
|
||||||
MealieValidationError,
|
|
||||||
)
|
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntryState
|
from homeassistant.config_entries import ConfigEntryState
|
||||||
|
@ -288,7 +288,7 @@ aiolookin==1.0.0
|
|||||||
aiolyric==1.1.0
|
aiolyric==1.1.0
|
||||||
|
|
||||||
# homeassistant.components.mealie
|
# homeassistant.components.mealie
|
||||||
aiomealie==0.7.0
|
aiomealie==0.8.0
|
||||||
|
|
||||||
# homeassistant.components.modern_forms
|
# homeassistant.components.modern_forms
|
||||||
aiomodernforms==0.1.8
|
aiomodernforms==0.1.8
|
||||||
|
@ -267,7 +267,7 @@ aiolookin==1.0.0
|
|||||||
aiolyric==1.1.0
|
aiolyric==1.1.0
|
||||||
|
|
||||||
# homeassistant.components.mealie
|
# homeassistant.components.mealie
|
||||||
aiomealie==0.7.0
|
aiomealie==0.8.0
|
||||||
|
|
||||||
# homeassistant.components.modern_forms
|
# homeassistant.components.modern_forms
|
||||||
aiomodernforms==0.1.8
|
aiomodernforms==0.1.8
|
||||||
|
@ -3,11 +3,7 @@
|
|||||||
from datetime import date
|
from datetime import date
|
||||||
from unittest.mock import AsyncMock
|
from unittest.mock import AsyncMock
|
||||||
|
|
||||||
from aiomealie.exceptions import (
|
from aiomealie import MealieConnectionError, MealieNotFoundError, MealieValidationError
|
||||||
MealieConnectionError,
|
|
||||||
MealieNotFoundError,
|
|
||||||
MealieValidationError,
|
|
||||||
)
|
|
||||||
from freezegun.api import FrozenDateTimeFactory
|
from freezegun.api import FrozenDateTimeFactory
|
||||||
import pytest
|
import pytest
|
||||||
from syrupy import SnapshotAssertion
|
from syrupy import SnapshotAssertion
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from unittest.mock import AsyncMock, patch
|
from unittest.mock import AsyncMock, patch
|
||||||
|
|
||||||
from aiomealie import ShoppingListsResponse
|
from aiomealie import MealieError, ShoppingListsResponse
|
||||||
from aiomealie.exceptions import MealieError
|
|
||||||
from freezegun.api import FrozenDateTimeFactory
|
from freezegun.api import FrozenDateTimeFactory
|
||||||
import pytest
|
import pytest
|
||||||
from syrupy.assertion import SnapshotAssertion
|
from syrupy.assertion import SnapshotAssertion
|
||||||
|
Loading…
x
Reference in New Issue
Block a user