From 0b5f70f0299f1e3e3da0f2a80ec7abaf3622a244 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 5 Jun 2025 11:36:33 +0200 Subject: [PATCH] ci: Switch to Qt 6.9 for Windows/macOS That's what we're shipping, so we should also test that. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6c098d4b..3195a222b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -200,17 +200,17 @@ jobs: os: ubuntu-24.04 python: "3.13" ### macOS Ventura - - testenv: py313-pyqt68 + - testenv: py313-pyqt69 os: macos-13 python: "3.13" args: "tests/unit" # Only run unit tests on macOS ### macOS Sonoma (M1 runner) - - testenv: py313-pyqt68 + - testenv: py313-pyqt69 os: macos-14 python: "3.13" args: "tests/unit" # Only run unit tests on macOS ### Windows - - testenv: py313-pyqt68 + - testenv: py313-pyqt69 os: windows-2019 python: "3.13" runs-on: "${{ matrix.os }}"