From dfe6181ad5c745797a43de64538e1fa1b7372267 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 19 Nov 2022 21:39:50 -0500 Subject: [PATCH] 2.1.0 release. --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 4eb15c6..13e4338 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pyhatchbabyrest", - version="2.0.1", + version="2.1.0", author="Kevin O'Connor", author_email="kjoconnor@gmail.com", description="Python library to control Hatch Baby Rest devices", @@ -19,9 +19,9 @@ "Operating System :: Unix", "Topic :: Home Automation", ], - python_requires='>=3.5', + python_requires=">=3.5", install_requires=[ - 'bleak', - 'pygatt', + "bleak", + "pygatt", ], )