From 7c1af5d29df15174bb6d3443ad2023f081c4c6a7 Mon Sep 17 00:00:00 2001 From: Charlie Kim Date: Wed, 4 Mar 2026 13:18:49 -0800 Subject: [PATCH] ci: add Python 3.12 to CI test matrix Adds Python 3.12 to the GitHub Actions test matrix. Closes #192 --- .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 241b633..0760adb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4