From b3cb2513698b3eeaf7256486911fc6b472dccf3b Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Thu, 24 Jul 2025 13:32:29 -0700 Subject: [PATCH] ci: add Python 3.12 and 3.13 to test matrix - Add Python 3.12 and 3.13 to CI test matrix - Ensure compatibility with latest Python versions - Python 3.12 is stable, 3.13 was released in Oct 2024 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7426ca7..52b7ae1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] runs-on: ${{ matrix.os }}