Upgrade distro to 1.1.0 (#10850)
This commit is contained in:
parent
1c227bc0d9
commit
bfc61c268a
2 changed files with 8 additions and 8 deletions
|
@ -4,28 +4,28 @@ Support to check for available updates.
|
||||||
For more details about this component, please refer to the documentation at
|
For more details about this component, please refer to the documentation at
|
||||||
https://home-assistant.io/components/updater/
|
https://home-assistant.io/components/updater/
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=no-name-in-module, import-error
|
||||||
import asyncio
|
import asyncio
|
||||||
|
from datetime import timedelta
|
||||||
|
from distutils.version import StrictVersion
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import uuid
|
import uuid
|
||||||
from datetime import timedelta
|
|
||||||
# pylint: disable=no-name-in-module, import-error
|
|
||||||
from distutils.version import StrictVersion
|
|
||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import async_timeout
|
import async_timeout
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
|
from homeassistant.const import ATTR_FRIENDLY_NAME
|
||||||
|
from homeassistant.const import __version__ as current_version
|
||||||
|
from homeassistant.helpers import event
|
||||||
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
import homeassistant.util.dt as dt_util
|
import homeassistant.util.dt as dt_util
|
||||||
from homeassistant.const import (
|
|
||||||
ATTR_FRIENDLY_NAME, __version__ as current_version)
|
|
||||||
from homeassistant.helpers import event
|
|
||||||
|
|
||||||
REQUIREMENTS = ['distro==1.0.4']
|
REQUIREMENTS = ['distro==1.1.0']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -206,7 +206,7 @@ directpy==0.2
|
||||||
discord.py==0.16.12
|
discord.py==0.16.12
|
||||||
|
|
||||||
# homeassistant.components.updater
|
# homeassistant.components.updater
|
||||||
distro==1.0.4
|
distro==1.1.0
|
||||||
|
|
||||||
# homeassistant.components.switch.digitalloggers
|
# homeassistant.components.switch.digitalloggers
|
||||||
dlipower==0.7.165
|
dlipower==0.7.165
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue