From 87d627903db24c521f52f7c440b998c8d98f6546 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Thu, 17 Sep 2026 07:33:55 -0400 Subject: [PATCH] remove Python 3.10 from CI test matrix Python 3.10 will be EOL in several days. This change does not remove references to 3.10 from pyproject.toml. --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- changelog.md | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3e1ef81..5e539848 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9a51ecf1..a90aff20 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 diff --git a/changelog.md b/changelog.md index 08614efa..a769bae8 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,7 @@ Internal -------- * Naming and commentary in GitHub Actions. * Build ARM Docker image in CI. +* Remove Python 3.10 from CI test matrix. 2.25.2 (2026/09/16)