Bump the 3.13 and 3.14 support packages. (#69) #193
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_call: | |
| # Cancel active CI runs for a PR before starting another run | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| FORCE_COLOR: "1" | |
| jobs: | |
| pre-commit: | |
| name: Pre-commit checks | |
| uses: beeware/.github/.github/workflows/pre-commit-run.yml@main | |
| with: | |
| pre-commit-source: pre-commit | |
| verify-apps: | |
| name: Build apps | |
| needs: pre-commit | |
| uses: beeware/.github/.github/workflows/app-build-verify.yml@main | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| runner-os: windows-latest | |
| framework: ${{ matrix.framework }} | |
| target-platform: windows | |
| target-format: VisualStudio | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ] | |
| framework: [ "toga", "pyside6", "pygame", "console" ] | |
| # Pygame and PySide6 haven't published 3.14 wheels yet. | |
| # Toga is waiting on a release of Python.net for 3.14 | |
| exclude: | |
| - python-version: "3.14" | |
| framework: pyside6 | |
| - python-version: "3.14" | |
| framework: pygame | |
| - python-version: "3.14" | |
| framework: toga |