Skip to content

Commit 76ee53c

Browse files
authored
ci: Add aarm64 builds (#190)
* Use ubuntu-24.04-arm os rather than install qemu * Bump cibw version
1 parent 3125ecd commit 76ee53c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, windows-latest, macos-latest]
16+
os:
17+
[
18+
ubuntu-latest,
19+
ubuntu-24.04-arm,
20+
windows-latest,
21+
macos-13,
22+
macos-latest,
23+
]
1724

1825
steps:
1926
- uses: actions/checkout@v4
@@ -23,9 +30,9 @@ jobs:
2330
git clone https://github.com/martinus/robin-hood-hashing robinhood
2431
2532
- name: Build wheels
26-
uses: pypa/cibuildwheel@v2.22.0
33+
uses: pypa/cibuildwheel@v2.23.0
2734
env:
28-
CIBW_SKIP: "pp* cp36-* cp37-* *win_arm64 *_i686 *musllinux*"
35+
CIBW_SKIP: "pp* cp36-* cp37-* *win_arm64 *_i686"
2936
CIBW_BUILD_VERBOSITY: 1
3037

3138
- uses: actions/upload-artifact@v4

src/ripser/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.11"
1+
__version__ = "0.6.12"

0 commit comments

Comments
 (0)