From b730d38049abe96c624196ef1faa2026f81c1f66 Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Fri, 17 Nov 2023 11:48:32 +0100 Subject: [PATCH] Remove support of python 3.7 Python 3.7 has reached its end-of-life: https://peps.python.org/pep-0537/#lifespan Also add python 3.12 to the ci test matrix. --- .github/workflows/ci.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b684a7..cc11ec7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index f289547..3c6aaac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = [ ] description = "A console address book manager" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" classifiers = [ "Development Status :: 4 - Beta", @@ -71,7 +71,7 @@ module = [ ignore_missing_imports = true [tool.pylint.main] -py-version = "3.7" +py-version = "3.8" ignore-paths = ["khard/version.py"] [tool.pylint."messages control"]