Upgrade to aioymaps==1.1.0 to support new types of stops #39006 (#39021)

This commit is contained in:
Ivan Belokobylskiy 2020-08-20 06:30:48 +03:00 committed by GitHub
parent dc2d0b9297
commit be0f2719e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -2,6 +2,6 @@
"domain": "yandex_transport",
"name": "Yandex Transport",
"documentation": "https://www.home-assistant.io/integrations/yandex_transport",
"requirements": ["aioymaps==1.0.0"],
"requirements": ["aioymaps==1.1.0"],
"codeowners": ["@rishatik92", "@devbis"]
}

View File

@ -228,7 +228,7 @@ aioswitcher==1.2.0
aiounifi==23
# homeassistant.components.yandex_transport
aioymaps==1.0.0
aioymaps==1.1.0
# homeassistant.components.airly
airly==0.0.2

View File

@ -138,7 +138,7 @@ aioswitcher==1.2.0
aiounifi==23
# homeassistant.components.yandex_transport
aioymaps==1.0.0
aioymaps==1.1.0
# homeassistant.components.airly
airly==0.0.2

View File

@ -24,13 +24,13 @@ def mock_requester():
yield instance
STOP_ID = 9639579
STOP_ID = "stop__9639579"
ROUTES = ["194", "т36", "т47", "м10"]
NAME = "test_name"
TEST_CONFIG = {
"sensor": {
"platform": "yandex_transport",
"stop_id": 9639579,
"stop_id": "stop__9639579",
"routes": ROUTES,
"name": NAME,
}