diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3e7c21e9..f56f3fa85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -191,30 +191,30 @@ jobs: os: ubuntu-24.04 python: "3.13" ### PyQt 6.8 (Python 3.13) - - testenv: py314-pyqt68 + - testenv: py313-pyqt68 os: ubuntu-24.04 python: "3.13" ### PyQt 6.9 (Python 3.14) - - testenv: py313-pyqt69 + - testenv: py314-pyqt69 os: ubuntu-24.04 python: "3.14" ### macOS Ventura - - testenv: py313-pyqt69 + - testenv: py314-pyqt69 os: macos-13 - python: "3.13" + python: "3.14" args: "tests/unit" # Only run unit tests on macOS ### macOS Sonoma (M1 runner) - - testenv: py313-pyqt69 + - testenv: py314-pyqt69 os: macos-14 - python: "3.13" + python: "3.14" args: "tests/unit" # Only run unit tests on macOS ### Windows - - testenv: py313-pyqt69 + - testenv: py314-pyqt69 os: windows-2022 - python: "3.13" - - testenv: py313-pyqt69 + python: "3.14" + - testenv: py314-pyqt69 os: windows-2025 - python: "3.13" + python: "3.14" runs-on: "${{ matrix.os }}" steps: - uses: actions/checkout@v5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75faefc24..501b03843 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ on: python_version: description: 'Python version' required: true - default: '3.13' + default: '3.14' type: choice options: - '3.9' @@ -24,6 +24,7 @@ on: - '3.11' - '3.12' - '3.13' + - '3.14' jobs: prepare: runs-on: ubuntu-24.04