From 0277fedf8438e9810c85d3e0123ae5a9703b2760 Mon Sep 17 00:00:00 2001 From: Jan Wille Date: Fri, 15 Mar 2024 17:31:01 +0100 Subject: [PATCH] drop python 3.7, as its EOL --- .github/workflows/run-tests.yaml | 1 - .pre-commit-config.yaml | 4 +--- setup.cfg | 3 +-- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 266a260..86d0598 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -54,7 +54,6 @@ jobs: - ubuntu-latest - windows-latest python-version: - - '3.7' - '3.8' - '3.9' - '3.10' diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8afdbbd..7dcef56 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,9 +35,7 @@ repos: hooks: - name: format setup.cfg id: setup-cfg-fmt - args: - - "--include-version-classifiers" - - "--min-py-version=3.7" + args: [--include-version-classifiers] - repo: https://github.com/executablebooks/mdformat rev: 0.7.16 diff --git a/setup.cfg b/setup.cfg index b7bb7f8..52295ed 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,7 +17,6 @@ classifiers = Operating System :: POSIX :: Linux Programming Language :: Python :: 3 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 @@ -40,7 +39,7 @@ project_urls = packages = find: install_requires = setuptools>=41.0 -python_requires = >=3.7 +python_requires = >=3.8 include_package_data = True zip_safe = false