Skip to content

Commit 46f6f79

Browse files
committed
Correct CI workflows.
1 parent e60c5be commit 46f6f79

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,7 @@ jobs:
4040
matrix:
4141
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
4242
framework: [ "toga", "pyside6", "pygame", "console" ]
43-
# Pygame and PySide6 haven't published 3.14 wheels yet.
4443
# Toga is waiting on a release of Python.net for 3.14
4544
exclude:
46-
- python-version: "3.14"
47-
framework: pyside6
48-
- python-version: "3.14"
49-
framework: pygame
5045
- python-version: "3.14"
5146
framework: toga

.github/workflows/update-binary.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,24 @@ jobs:
1616
build-stubs:
1717
name: Build stub binaries
1818
strategy:
19+
fail-fast: false
1920
matrix:
20-
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
21+
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
2122
config:
2223
- runner: windows-latest
2324
arch: x64
2425
suffix: '-amd64'
2526
- runner: windows-11-arm
2627
arch: ARM64
2728
suffix: '-arm64'
29+
include:
30+
# GitHub doesn't provide ARM64 binaries for Python 3.10
31+
- python-version: "3.10"
32+
config:
33+
runner: windows-latest
34+
arch: x64
35+
suffix: '-amd64'
36+
2837
runs-on: ${{ matrix.config.runner }}
2938
steps:
3039
- name: Set Build Variables

0 commit comments

Comments
 (0)