From a786df59b8928e6743e4f7a214e53aab61843fad Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Tue, 25 Mar 2025 07:33:12 +0000 Subject: [PATCH] drop support python 3.8 --- .github/workflows/test.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 442ef69..697015c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.14.0-alpha.2", "3.13", "3.12", "3.11", "3.10", "3.9", "3.8"] + python-version: ["3.14.0-alpha.2", "3.13", "3.12", "3.11", "3.10", "3.9"] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 428692e..78aec0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ requires = ["setuptools>=45", "setuptools-scm"] build-backend = "setuptools.build_meta" -requires-python = ">=3.8" +requires-python = ">=3.9" [project] name = "cpp_linter_hooks" @@ -23,7 +23,6 @@ classifiers = [ "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Operating System :: MacOS", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",