Skip to content

Commit ff7f723

Browse files
committed
Don't try to test on unsupported versions
- Exclude the 3.7 job on macOS, since `macos-latest` is AArch64 which doesn't have builds for 3.7. - Comment out 3.13t, since it doesn't seem to be working at all right now for this, on any platforms. That can be investigated later.
1 parent 406e85c commit ff7f723

File tree

1 file changed

+32
-4
lines changed

1 file changed

+32
-4
lines changed

.github/workflows/test.yml

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,22 @@ jobs:
88

99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: ['3.13t', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7']
11+
os:
12+
- ubuntu-latest
13+
- macos-latest
14+
- windows-latest
15+
python-version:
16+
# - '3.13t'
17+
- '3.13'
18+
- '3.12'
19+
- '3.11'
20+
- '3.10'
21+
- '3.9'
22+
- '3.8'
23+
- '3.7'
24+
exclude:
25+
- os: macos-latest
26+
python-version: '3.7'
1327

1428
fail-fast: false
1529

@@ -75,8 +89,22 @@ jobs:
7589

7690
strategy:
7791
matrix:
78-
os: [ubuntu-latest, macos-latest, windows-latest]
79-
python-version: ['3.13t', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7']
92+
os:
93+
- ubuntu-latest
94+
- macos-latest
95+
- windows-latest
96+
python-version:
97+
# - '3.13t'
98+
- '3.13'
99+
- '3.12'
100+
- '3.11'
101+
- '3.10'
102+
- '3.9'
103+
- '3.8'
104+
- '3.7'
105+
exclude:
106+
- os: macos-latest
107+
python-version: '3.7'
80108

81109
fail-fast: false
82110

0 commit comments

Comments
 (0)