From a35f1bc6250dec0066a3c340135a1310afdf49ae Mon Sep 17 00:00:00 2001 From: Hedda Date: Fri, 11 Dec 2020 12:59:18 +0100 Subject: [PATCH 1/2] Bump up dependencies on pyserial and pyserial-asyncio Bump up dependencies on pyserial and pyserial-asyncio for projects other projects that use this library but are not Home Assistant. Adminiuga did the same dependency version bump for Home Assistant in https://github.com/home-assistant/core/pull/44089 pyserial-asyncio depends on pyserial and this bumps pyserial-asyncio to 0.5 version release and pyserial to 3.5 version release. https://github.com/pyserial/pyserial-asyncio/releases/tag/v0.5 https://github.com/pyserial/pyserial/releases/tag/v3.5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8713cc5..9229d9a 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,6 @@ author_email="rcloran@gmail.com", license="GPL-3.0", packages=find_packages(exclude=["*.tests"]), - install_requires=["pyserial-asyncio", "zigpy>= 0.23.0"], + install_requires=["pyserial==3.5", "pyserial-asyncio==0.5", "zigpy>= 0.23.0"], tests_require=["pytest"], ) From 3cb5902830dc581a750c65ce317efff18f3f60ba Mon Sep 17 00:00:00 2001 From: Hedda Date: Mon, 14 Dec 2020 12:17:49 +0100 Subject: [PATCH 2/2] Change from == to >= for pyserial 3.5 and pyserial-asyncio 0.5 Change from == to >= for pyserial 3.5 and pyserial-asyncio 0.5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9229d9a..2f7516d 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,6 @@ author_email="rcloran@gmail.com", license="GPL-3.0", packages=find_packages(exclude=["*.tests"]), - install_requires=["pyserial==3.5", "pyserial-asyncio==0.5", "zigpy>= 0.23.0"], + install_requires=["pyserial>=3.5", "pyserial-asyncio>=0.5", "zigpy>= 0.23.0"], tests_require=["pytest"], )