From 88d7e76bab8f774e39191b44b4dacea5aed8d161 Mon Sep 17 00:00:00 2001 From: Steven Troxler Date: Mon, 1 Jun 2026 15:44:37 -0700 Subject: [PATCH] Bump python minimum version to 3.10 - 3.9 is past end-of-life --- .github/workflows/ci.yml | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61a83a6f..263afc69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,6 @@ jobs: fail-fast: false matrix: python-version: - - "3.9" - "3.10" - "3.11" - "3.12" diff --git a/pyproject.toml b/pyproject.toml index b59fbf20..4335a601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ "Topic :: Software Development :: Quality Assurance", ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "click >= 8.0, < 8.2", "libcst >= 0.3.18",