From 4d39d5d7fb46d38e92681f318092983c0c79a992 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Tue, 21 Feb 2023 21:47:02 +0100 Subject: [PATCH] Remove Python 3.7 support --- .github/workflows/lint-and-tests.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-and-tests.yml b/.github/workflows/lint-and-tests.yml index 7ef7e788..5816138f 100644 --- a/.github/workflows/lint-and-tests.yml +++ b/.github/workflows/lint-and-tests.yml @@ -21,7 +21,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"] # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/setup.py b/setup.py index 73a4f405..0b595931 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ # run entry_points={"mkdocs.plugins": ["rss = mkdocs_rss_plugin.plugin:GitRssPlugin"]}, # dependencies - python_requires=">=3.7, <4", + python_requires=">=3.8, <4", extras_require={ "dev": requirements_dev, "doc": requirements_docs, @@ -80,7 +80,6 @@ "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",