We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4633ea6 commit dcd18e7Copy full SHA for dcd18e7
.github/workflows/ci-tests.yml
@@ -44,8 +44,12 @@ jobs:
44
architecture: x86
45
- os: "ubuntu-22.04"
46
architecture: arm64
47
- # MacOS we need to make sure to remove x86 on all, but x64
48
- # on the arm runners and arm64 on the x64 runners
+ # MacOS we need to make sure to remove x86 on all
+ # We need to run no arm64 on macos-13 (Intel), but some
49
+ # Python versions: 3.9/3.10
50
+ #
51
+ # From 3.11 onward, there is support for running x64 and
52
+ # arm64 on Apple Silicon based systems (macos-14)
53
- os: "macos-13"
54
55
@@ -54,6 +58,10 @@ jobs:
58
59
- os: "macos-14"
56
60
architecture: x64
61
+ py: "3.9"
62
+ - os: "macos-14"
63
+ architecture: x64
64
+ py: "3.10"
57
65
# Windows does not have arm64 releases
66
- os: "windows-latest"
67
0 commit comments