mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-14 12:46:32 +00:00
Fix issues with dev version (#1873)
This commit is contained in:
parent
bef4034ab8
commit
14776eae76
@ -17,7 +17,7 @@ class PluginManager(CoreSysAttributes):
|
|||||||
|
|
||||||
required_cli: int = 25
|
required_cli: int = 25
|
||||||
required_dns: int = 9
|
required_dns: int = 9
|
||||||
required_audio: int = 14
|
required_audio: int = 16
|
||||||
required_multicast: int = 2
|
required_multicast: int = 2
|
||||||
|
|
||||||
def __init__(self, coresys: CoreSys):
|
def __init__(self, coresys: CoreSys):
|
||||||
@ -74,7 +74,9 @@ class PluginManager(CoreSysAttributes):
|
|||||||
try:
|
try:
|
||||||
if int(plugin.version) >= required_version:
|
if int(plugin.version) >= required_version:
|
||||||
continue
|
continue
|
||||||
except TypeError:
|
except (TypeError, ValueError):
|
||||||
|
if plugin.version == "dev":
|
||||||
|
continue
|
||||||
_LOGGER.warning(
|
_LOGGER.warning(
|
||||||
"Somethings going wrong with requirements on %s",
|
"Somethings going wrong with requirements on %s",
|
||||||
type(plugin).__name__,
|
type(plugin).__name__,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user