Skip to content

Commit fe97628

Browse files
committed
add github workflow for test-pypi cross-OS wheel builds
1 parent c5f94bb commit fe97628

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/testpypi-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Linux ABI3 wheels (TestPyPI)
1+
name: Build Linux wheels (TestPyPI)
22

33
on:
44
push:
@@ -41,7 +41,7 @@ jobs:
4141
run: python -m cibuildwheel --output-dir wheelhouse
4242
env:
4343
CIBW_BUILD: "cp311-* cp312-* cp313-* cp314-*"
44-
CIBW_ARCHS_LINUX: "x86_64 arm64"
44+
CIBW_ARCHS_LINUX: "auto aarch64"
4545

4646
- name: Upload to TestPyPI
4747
run: |

.github/workflows/testpypi-macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and upload wheels to TestPyPI
1+
name: Build macOS wheels (TestPyPI)
22

33
on:
44
push:
@@ -46,6 +46,7 @@ jobs:
4646
CIBW_ENVIRONMENT: >
4747
CC=$(brew --prefix llvm@20)/bin/clang
4848
CXX=$(brew --prefix llvm@20)/bin/clang++
49+
MACOSX_DEPLOYMENT_TARGET=11.0
4950
5051
- name: Upload to TestPyPI
5152
run: |

0 commit comments

Comments
 (0)