From fb2ed4bcccd1dd0602bd65d4dc2f01a56930cd81 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 19 Nov 2024 16:38:35 -0600 Subject: [PATCH] Drop Python 3.8 support (#924) --- .github/workflows/ci-cd.yml | 2 +- CHANGES/924.removal | 1 + pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 CHANGES/924.removal diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 184d0e92..a02e9806 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -90,7 +90,7 @@ jobs: - build strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12'] os: [ubuntu] registry: ['1'] pytest-arg: [''] diff --git a/CHANGES/924.removal b/CHANGES/924.removal new file mode 100644 index 00000000..998c7cd7 --- /dev/null +++ b/CHANGES/924.removal @@ -0,0 +1 @@ +Removed Python 3.8 support as it has reached end of life. diff --git a/pyproject.toml b/pyproject.toml index 767d7259..9b158a0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,12 +11,11 @@ dynamic = ["version"] readme = "README.rst" description = "A simple Docker HTTP API wrapper written with asyncio and aiohttp." license = { text = "Apache 2.0" } -requires-python = ">=3.8.0" +requires-python = ">=3.9.0" classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",