From 5af41173b78a79e5ef4a8e7ce1831bc2fba5c265 Mon Sep 17 00:00:00 2001 From: Dinculescu Date: Fri, 13 Oct 2023 09:01:26 +0100 Subject: [PATCH] tapo-py: Change Python minimum version to 3.8 --- CHANGELOG.md | 4 ++++ tapo-py/pyproject.toml | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffb6ad2..45b27b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ file. This change log follows the conventions of ## [Python Unreleased][Unreleased] +### Changed + +- The minimum required version of Python has been changed to 3.8, up from 3.7. + ## [Python v0.1.2][py-v0.1.2] - 2023-10-19 ### Added diff --git a/tapo-py/pyproject.toml b/tapo-py/pyproject.toml index 0ebf5bd..4543208 100644 --- a/tapo-py/pyproject.toml +++ b/tapo-py/pyproject.toml @@ -25,14 +25,13 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Intended Audience :: Developers", "Topic :: Home Automation", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] -requires-python = ">=3.7" +requires-python = ">=3.8" [project.urls] Changelog = 'https://github.com/mihai-dinculescu/tapo/blob/main/CHANGELOG.md' @@ -41,7 +40,7 @@ Homepage = 'https://github.com/mihai-dinculescu/tapo' Source = 'https://github.com/mihai-dinculescu/tapo' [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" [tool.poetry.dev-dependencies] maturin = ">=1.0,<2.0"