From d0075bc5844fe5a3d43a181ea4ef2c7cf70fa86f Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Sat, 26 Oct 2024 11:00:22 -0400 Subject: [PATCH] Re-enable PySide6 & Pygame for Python 3.13 in CI --- .github/workflows/ci.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eab98e8..c04b158 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: @@ -40,12 +40,3 @@ jobs: matrix: python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13-dev" ] 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"