From 4ea38dafc61f5812627cfb05f53382c8ceb639f4 Mon Sep 17 00:00:00 2001 From: jonathan343 Date: Wed, 22 Apr 2026 13:36:05 -0400 Subject: [PATCH] Add Python 3.15 to CI as non-blocking --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6305da6..da77ca42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,11 @@ permissions: jobs: ci: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.python-version == '3.15' }} strategy: fail-fast: false matrix: - python-version: ["3.12", "3.13", "3.14"] + python-version: ["3.12", "3.13", "3.14", "3.15"] steps: - name: Checkout Repository