Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
# PYVERSIONS: changing the list of versions will change the number of
# expected distributions. This must match the same number in publish.yml.
EXPECTED: 88
EXPECTED: 104

permissions:
contents: read
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
#
# # For each OS, what arch to use with cibuildwheel:
# os_archs = {
# "ubuntu": ["x86_64", "i686", "aarch64"],
# "ubuntu": ["x86_64", "i686", "aarch64", "riscv64"],
# "macos": ["arm64", "x86_64"],
# "windows": ["x86", "AMD64", "ARM64"],
# }
Expand Down Expand Up @@ -128,6 +128,12 @@ jobs:
- {"os": "ubuntu", "py": "cp312", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp313", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp314", "arch": "aarch64", "os-version": "22.04-arm"}
- {"os": "ubuntu", "py": "cp39", "arch": "riscv64"}
- {"os": "ubuntu", "py": "cp310", "arch": "riscv64"}
- {"os": "ubuntu", "py": "cp311", "arch": "riscv64"}
- {"os": "ubuntu", "py": "cp312", "arch": "riscv64"}
- {"os": "ubuntu", "py": "cp313", "arch": "riscv64"}
- {"os": "ubuntu", "py": "cp314", "arch": "riscv64"}
- {"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 Down Expand Up @@ -156,7 +162,7 @@ jobs:
- {"os": "windows", "py": "cp312", "arch": "ARM64", "os-version": "11-arm"}
- {"os": "windows", "py": "cp313", "arch": "ARM64", "os-version": "11-arm"}
- {"os": "windows", "py": "cp314", "arch": "ARM64", "os-version": "11-arm"}
# [[[end]]] (sum: 7BoHzaIHKR)
# [[[end]]] (sum: 0tXzcJPEQS)
# ^^^^^^^^^^^^^^^
# If a check fails and points to this checksum line, it means you edited
# the matrix directly instead of editing the Python code in the comment
Expand Down Expand Up @@ -193,7 +199,9 @@ jobs:
- name: "Install tools"
run: |
python -m pip install -r requirements/kit.pip

- name: Set up QEMU
if: ${{ matrix.arch == 'riscv64' }}
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
- name: "Build binary wheels"
env:
CIBW_BUILD: ${{ matrix.py }}*-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defaults:
env:
# PYVERSIONS: changing the list of versions will change the number of
# expected distributions. This must match the same number in kit.yml.
EXPECTED: 88
EXPECTED: 104

permissions:
contents: read
Expand Down
Loading