From c8c677864cdaba72f134facbdc4c7b95bf1f1411 Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Sat, 26 Oct 2024 11:04:22 -0400 Subject: [PATCH] Re-enable PySide6 & Pygame for Python 3.13 in CI --- .github/workflows/ci.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08d6905..a9c7759 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: # Cancel active CI runs for a PR before starting another run concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true defaults: @@ -38,14 +38,5 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13-dev" ] + python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] framework: [ "toga", "pyside6", "pygame", "console" ] - - exclude: - # PySide6 hasn't published 3.13 wheels. - - python-version: "3.13-dev" - framework: "pyside6" - - # Pygame hasn't published 3.13 wheels. - - python-version: "3.13-dev" - framework: "pygame"