From 4b786846ae59ff9f8ed67991ffb62d842724b0cd Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Fri, 5 Dec 2025 11:05:29 -0500 Subject: [PATCH] Remove Python 3.14 from testing Until cpython bug https://github.com/python/cpython/issues/142307 is fixed --- .github/workflows/python-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 97ffc07..4c7c69c 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v5