From 0eaf97275df0cc0acca27db0afb2cbd4be68b870 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Oct 2022 01:10:47 +0200 Subject: [PATCH 1/6] Back to dev --- homeassistant_cli/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant_cli/const.py b/homeassistant_cli/const.py index a843d3f..e197147 100644 --- a/homeassistant_cli/const.py +++ b/homeassistant_cli/const.py @@ -1,8 +1,8 @@ """Constants used by Home Assistant CLI (hass-cli).""" PACKAGE_NAME = 'homeassistant_cli' -__version__ = '0.9.5' -# __version__ = '0.10.0.dev0' +# __version__ = '0.9.6' +__version__ = '0.10.0.dev0' AUTO_SERVER = 'auto' DEFAULT_SERVER = 'http://localhost:8123' From 698873427027470c405a83547e21fe5796f0816c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Oct 2022 01:22:52 +0200 Subject: [PATCH 2/6] Allow later click-log --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4de5b81..225d472 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ def get_git_commit_datetime() -> str: REQUIRES = [ 'aiohttp>=3.8,<4', - 'click-log>=0.3.2,<0.4', + 'click-log>=0.4,<0.5', 'click>=8,<9', 'dateparser>=0.7.1,<0.8', 'jinja2>=2.10', From 341c45491c8b126f1db2b5f70b820d2821e4aec9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Oct 2022 01:49:24 +0200 Subject: [PATCH 3/6] Allow later pytest-timeout release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 225d472..45d8284 100644 --- a/setup.py +++ b/setup.py @@ -106,7 +106,7 @@ def get_git_commit_datetime() -> str: 'pytest>=7,<8', 'pytest-cov>=2.11,<3', 'pytest-sugar>=0.9.4,<0.10', - 'pytest-timeout>=1.4,<2', + 'pytest-timeout>=2,<3', 'requests_mock>=1.8.0,<2', 'twine>=1.13.0,<2', 'wheel>=0.33.1,<0.40', # Otherwise setup.py bdist_wheel does not work From f0aa0a87359879f170a27d3fb8197fbb5d8b9696 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Sat, 8 Oct 2022 08:12:07 -0400 Subject: [PATCH 4/6] Allow later tabulate --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 45d8284..d770ee5 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ def get_git_commit_datetime() -> str: 'regex>=2022.9', 'ruamel.yaml>=0.17,<0.18', 'requests>=2.28.0,<3', - 'tabulate>=0.8.3,<0.9', + 'tabulate>=0.8.3,<0.10', ] # Should be as close to Home Assistant dev/master as possible From bcc16787ca37c698d9c1341caaaeefa1368247ad Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 25 Oct 2022 00:22:07 +0200 Subject: [PATCH 5/6] Prepare for 0.9.6 --- homeassistant_cli/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant_cli/const.py b/homeassistant_cli/const.py index e197147..6f9227e 100644 --- a/homeassistant_cli/const.py +++ b/homeassistant_cli/const.py @@ -1,8 +1,8 @@ """Constants used by Home Assistant CLI (hass-cli).""" PACKAGE_NAME = 'homeassistant_cli' -# __version__ = '0.9.6' -__version__ = '0.10.0.dev0' +__version__ = '0.9.6' +#__version__ = '0.10.0.dev0' AUTO_SERVER = 'auto' DEFAULT_SERVER = 'http://localhost:8123' From 5da441182e362d209f65034bc3254135ad23728c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 25 Oct 2022 00:27:01 +0200 Subject: [PATCH 6/6] Fix formatting acc. requirements --- homeassistant_cli/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant_cli/const.py b/homeassistant_cli/const.py index 6f9227e..bb782d5 100644 --- a/homeassistant_cli/const.py +++ b/homeassistant_cli/const.py @@ -2,7 +2,7 @@ PACKAGE_NAME = 'homeassistant_cli' __version__ = '0.9.6' -#__version__ = '0.10.0.dev0' +# __version__ = '0.10.0.dev0' AUTO_SERVER = 'auto' DEFAULT_SERVER = 'http://localhost:8123'