From d8667c7abcb2e52ef3970ac819358d72f3ea45f8 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 16 Apr 2024 02:01:02 +0200 Subject: [PATCH] Remove support for Python 3.7 --- .github/workflows/tests.yml | 2 +- CHANGES.md | 1 + pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0158622..929b90f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest"] - python-version: ["3.7", "3.12"] + python-version: ["3.8", "3.12"] fail-fast: false env: diff --git a/CHANGES.md b/CHANGES.md index 8f6c9d3..81d203c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ ## Unreleased - Tests: Make sensor tests work, using a fake sysfs filesystem - Tests: Add basic test case for CLI interface +- Remove support for Python 3.7 ## v0.0.2 - 2024-04-15 - Publish as `ds18b20-datalogger` package diff --git a/pyproject.toml b/pyproject.toml index a82c734..d28a5b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,12 +27,11 @@ license = { file = "LICENSE" } authors = [ { name = "The Hiveeyes Developers", email = "hello@hiveeyes.org" }, ] -requires-python = ">=3.7" +requires-python = ">=3.8" classifiers = [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: GNU General Public License (GPL)", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",