From df25b533df01ecbfce4d8244720b2f66372698cb Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 5 Oct 2023 06:24:08 +0800 Subject: [PATCH] Finalize 3.12 runners. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe8f116..a29b6d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,20 +30,20 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12-dev" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] framework: [ "toga", "pyside2", "pyside6", "ppb", "pygame" ] exclude: # PySide2 doesn't publish a binary wheel that is compatible # with Python 3.11+, and is unlikely to ever do so. - python-version: "3.11" framework: "pyside2" - - python-version: "3.12-dev" + - python-version: "3.12" framework: "pyside2" # PySide6 hasn't published a binary wheel that is compatible # with Python 3.12 yet. - - python-version: "3.12-dev" + - python-version: "3.12" framework: "pyside6" # Pygame hasn't published a binary wheel that is compatible # with Python 3.12 yet. - - python-version: "3.12-dev" + - python-version: "3.12" framework: "pygame"