From 35404b79cf1f276409130833b88912c1901cf2f2 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 17 Oct 2024 08:44:54 +0800 Subject: [PATCH] No need for an experimental flag, apparently. --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3985967..26dc9a7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: name: Unit tests needs: [ pre-commit, towncrier, package ] runs-on: ${{ matrix.platform }} - continue-on-error: ${{ matrix.experimental || false }} + continue-on-error: false strategy: fail-fast: false matrix: @@ -65,10 +65,6 @@ jobs: "macos-14", "macos-15" ] python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ] - include: - - python-version: "3.14" - experimental: true - exclude: # actions/setup-python doesn't provide Python 3.9 for M1. - platform: "macos-14"