Skip to content

Commit

Permalink
ci: Add aarm64 builds (#190)
Browse files Browse the repository at this point in the history
* Use ubuntu-24.04-arm os rather than install qemu

* Bump cibw version
  • Loading branch information
catanzaromj authored Mar 8, 2025
1 parent 3125ecd commit 76ee53c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
windows-latest,
macos-13,
macos-latest,
]

steps:
- uses: actions/checkout@v4
Expand All @@ -23,9 +30,9 @@ jobs:
git clone https://github.com/martinus/robin-hood-hashing robinhood
- name: Build wheels
uses: pypa/cibuildwheel@v2.22.0
uses: pypa/cibuildwheel@v2.23.0
env:
CIBW_SKIP: "pp* cp36-* cp37-* *win_arm64 *_i686 *musllinux*"
CIBW_SKIP: "pp* cp36-* cp37-* *win_arm64 *_i686"
CIBW_BUILD_VERBOSITY: 1

- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion src/ripser/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.11"
__version__ = "0.6.12"

0 comments on commit 76ee53c

Please sign in to comment.