From 4638ec9822874bf3267f8f61be3cd171f638d97f Mon Sep 17 00:00:00 2001 From: Sillyfrog Date: Sun, 3 Nov 2024 21:15:00 +1000 Subject: [PATCH] Version bump --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4d425c3..895a97f 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ """Pip setup file for aiopulse2 library.""" + import setuptools with open("README.md", "r") as fh: @@ -7,13 +8,13 @@ setuptools.setup( name="aiopulse2", packages=setuptools.find_packages(), - version="0.8.0", + version="0.9.0", license="apache-2.0", description="Rollease Acmeda Automate Pulse Hub v2 integration.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/sillyfrog/aiopulse2", - download_url="https://github.com/sillyfrog/aiopulse2/archive/v0.7.0.tar.gz", + download_url="https://github.com/sillyfrog/aiopulse2/archive/v0.9.0.tar.gz", keywords=["automation"], install_requires=["async_timeout>=3.0", "websockets>=8.1"], classifiers=[ @@ -24,7 +25,7 @@ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", ], - python_requires=">=3.7", + python_requires=">=3.11", author="Sillyfrog", author_email="tgh@sillyfrog.com", )