diff --git a/HABApp/__version__.py b/HABApp/__version__.py index 57bac0b6..3894c1e1 100644 --- a/HABApp/__version__.py +++ b/HABApp/__version__.py @@ -1 +1 @@ -__version__ = '0.13.1 Dev' +__version__ = '0.13.2' diff --git a/HABApp/config/_conf_openhab.py b/HABApp/config/_conf_openhab.py index 6aca905a..ee19ee31 100644 --- a/HABApp/config/_conf_openhab.py +++ b/HABApp/config/_conf_openhab.py @@ -14,7 +14,7 @@ class General(ConfigContainer): False, description='If True HABApp will not change anything on the openHAB instance.' ) wait_for_openhab: bool = ConfigEntry( - False, + True, description='If True HABApp will wait for items from the openHAB instance before loading any rules on startup' ) diff --git a/HABApp/core/wrapper.py b/HABApp/core/wrapper.py index cd141e3b..c2217b9a 100644 --- a/HABApp/core/wrapper.py +++ b/HABApp/core/wrapper.py @@ -36,7 +36,7 @@ def format_exception(e: typing.Union[Exception, typing.Tuple[typing.Any, typing. tb = [] skip = 0 - lines = stackprinter.format(e, truncate_vals=2000, suppressed_paths=SUPPRESSED_PATHS).splitlines() + lines = stackprinter.format(e, line_wrap=0, truncate_vals=2000, suppressed_paths=SUPPRESSED_PATHS).splitlines() for i, line in enumerate(lines): if not skip: for s in SKIP_TB: diff --git a/requirements.txt b/requirements.txt index 83743fe7..f8770485 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,18 +1,18 @@ aiohttp-sse-client==0.1.7 aiohttp==3.6.2 -astral==2.1 +astral==2.2 bidict==0.19.0 easyco==0.2.2 paho-mqtt==1.5.0 pydantic==1.5.1 -pytz==2019.3 -stackprinter==0.2.3 -tzlocal==2.0.0 +pytz==2020.1 +stackprinter==0.2.4 +tzlocal==2.1 voluptuous==0.11.7 watchdog==0.10.2 # This is optional -ujson==2.0.3 +ujson==3.0.0 # Backports -dataclasses;python_version<"3.7" \ No newline at end of file +dataclasses==0.7;python_version<"3.7"