From f4c8014c1839b526adce6d05ef76495e4c933a40 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 7 Jan 2025 10:42:03 +0000 Subject: [PATCH] Drop Python 3.8 --- .github/workflows/test-kr8s.yaml | 4 ++-- .github/workflows/test-kubectl-ng.yaml | 2 +- README.md | 2 +- docs/index.md | 2 +- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-kr8s.yaml b/.github/workflows/test-kr8s.yaml index 2b62ebf..8a9788d 100644 --- a/.github/workflows/test-kr8s.yaml +++ b/.github/workflows/test-kr8s.yaml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] kubernetes-version: ["1.32.0"] include: - python-version: '3.10' @@ -60,7 +60,7 @@ jobs: fail-fast: false matrix: # Test the minimal and maximal Python versions only - python-version: ["3.8", "3.12"] + python-version: ["3.9", "3.12"] kubernetes-version: ["1.32.0"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/test-kubectl-ng.yaml b/.github/workflows/test-kubectl-ng.yaml index 22d2d66..6eb426f 100644 --- a/.github/workflows/test-kubectl-ng.yaml +++ b/.github/workflows/test-kubectl-ng.yaml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] kubernetes-version: ["1.32.0"] include: - python-version: '3.10' diff --git a/README.md b/README.md index 62a5e99..16f80b9 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Read the Docs](https://img.shields.io/readthedocs/kr8s?logo=readthedocs&logoColor=white)](https://docs.kr8s.org/en/stable/) [![EffVer Versioning](https://img.shields.io/badge/version_scheme-EffVer-0097a7)](https://jacobtomlinson.dev/effver) [![PyPI](https://img.shields.io/pypi/v/kr8s)](https://pypi.org/project/kr8s/) -[![Python Version Support](https://img.shields.io/badge/Python%20support-3.8%7C3.9%7C3.10%7C3.11%7C3.12-blue)](https://pypi.org/project/kr8s/) +[![Python Version Support](https://img.shields.io/badge/Python%20support-3.9%7C3.10%7C3.11%7C3.12-blue)](https://pypi.org/project/kr8s/) [![Kubernetes Version Support](https://img.shields.io/badge/Kubernetes%20support-1.29%7C1.30%7C1.31%7C1.32-blue)](https://docs.kr8s.org/en/stable/installation.html#supported-kubernetes-versions) [![PyPI - Wheel](https://img.shields.io/pypi/wheel/kr8s)](https://pypi.org/project/kr8s/) [![PyPI - License](https://img.shields.io/pypi/l/kr8s)](https://pypi.org/project/kr8s/) diff --git a/docs/index.md b/docs/index.md index d28a50d..04bddb3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ [![EffVer Versioning](https://img.shields.io/badge/version_scheme-EffVer-0097a7)](https://jacobtomlinson.dev/effver) [![PyPI](https://img.shields.io/pypi/v/kr8s)](https://pypi.org/project/kr8s/) -[![Python Version Support](https://img.shields.io/badge/Python%20support-3.8%7C3.9%7C3.10%7C3.11%7C3.12-blue)](https://pypi.org/project/kr8s/) +[![Python Version Support](https://img.shields.io/badge/Python%20support-3.9%7C3.10%7C3.11%7C3.12-blue)](https://pypi.org/project/kr8s/) [![Kubernetes Version Support](https://img.shields.io/badge/Kubernetes%20support-1.29%7C1.30%7C1.31%7C1.32-blue)](https://docs.kr8s.org/en/stable/installation.html#supported-kubernetes-versions) [![PyPI - Wheel](https://img.shields.io/pypi/wheel/kr8s)](https://pypi.org/project/kr8s/) [![PyPI - License](https://img.shields.io/pypi/l/kr8s)](https://pypi.org/project/kr8s/) diff --git a/pyproject.toml b/pyproject.toml index d4f7228..da46258 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ readme = "README.md" keywords = ["kubernetes", "kubectl"] license = { text = "BSD-3-Clause" } classifiers = ["Programming Language :: Python :: 3"] -requires-python = ">=3.8" +requires-python = ">=3.9" dynamic = ["version"] dependencies = [ "asyncache>=0.3.1",