-
Notifications
You must be signed in to change notification settings - Fork 64
/
build-matrix.json
43 lines (41 loc) · 962 Bytes
/
build-matrix.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"comment0": "The minimum supported version of Python is currently 3.9.",
"pythonVersions": [
"3.9",
"3.12",
"3.13"
],
"comment1": "runners hosted by GitHub, always enabled",
"hosted": [
{
"os": "ubuntu-24.04",
"os_name": "linux",
"target_arch": "x64"
},
{
"comment": "Explicit macOS version 13 is required for explicit x64 CPU.",
"os": "macos-13",
"os_name": "osx",
"target_arch": "x64"
},
{
"comment": "Latest macOS version is arm64 CPU.",
"os": "macos-latest",
"os_name": "osx",
"target_arch": "arm64"
},
{
"os": "windows-latest",
"os_name": "win",
"target_arch": "x64"
}
],
"comment2": "runners hosted by the owner, enabled by the ENABLE_SELF_HOSTED variable being set on the repo",
"selfHosted": [
{
"os": "self-hosted-linux-arm64",
"os_name": "linux",
"target_arch": "arm64"
}
]
}