Skip to content

Commit

Permalink
build: fix aarch64 kits
Browse files Browse the repository at this point in the history
Using advice from pypa/cibuildwheel#2257
  • Loading branch information
nedbat committed Feb 11, 2025
1 parent bb68f99 commit e268fec
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ jobs:
# }
# if the_os == "macos":
# them["os-version"] = "13"
# if the_arch == "aarch64":
# them["os-version"] = "22.04-arm"
# print(f"- {json.dumps(them)}")
# ]]]
- {"os": "ubuntu", "py": "cp39", "arch": "x86_64"}
Expand All @@ -111,11 +113,11 @@ jobs:
- {"os": "ubuntu", "py": "cp311", "arch": "i686"}
- {"os": "ubuntu", "py": "cp312", "arch": "i686"}
- {"os": "ubuntu", "py": "cp313", "arch": "i686"}
- {"os": "ubuntu", "py": "cp39", "arch": "aarch64"}
- {"os": "ubuntu", "py": "cp310", "arch": "aarch64"}
- {"os": "ubuntu", "py": "cp311", "arch": "aarch64"}
- {"os": "ubuntu", "py": "cp312", "arch": "aarch64"}
- {"os": "ubuntu", "py": "cp313", "arch": "aarch64"}
- {"os": "ubuntu", "py": "cp39", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp310", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp311", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp312", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp313", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "macos", "py": "cp39", "arch": "arm64", "os-version": "13"}
- {"os": "macos", "py": "cp310", "arch": "arm64", "os-version": "13"}
- {"os": "macos", "py": "cp311", "arch": "arm64", "os-version": "13"}
Expand All @@ -136,7 +138,7 @@ jobs:
- {"os": "windows", "py": "cp311", "arch": "AMD64"}
- {"os": "windows", "py": "cp312", "arch": "AMD64"}
- {"os": "windows", "py": "cp313", "arch": "AMD64"}
# [[[end]]] (checksum: 38b83d67f00c838e5e7f69f803b7536c)
# [[[end]]] (checksum: 7c3758a4ca41df53d7ebcad68f12d0d0)
fail-fast: false

steps:
Expand Down

0 comments on commit e268fec

Please sign in to comment.