File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ permissions:
1818jobs :
1919 release-build :
2020 runs-on : ubuntu-latest
21+ strategy :
22+ matrix :
23+ # macos-13 is an intel runner, macos-14 is apple silicon
24+ os : [ "ubuntu-22.04", "ubuntu-22.04-arm" ]
2125
2226 steps :
2327 - uses : actions/checkout@v4
@@ -31,15 +35,17 @@ jobs:
3135 - uses : actions/setup-python@v5
3236 with :
3337 python-version : " 3.x"
34-
35- - name : Install Build
36- run : |
37- # NOTE: put your own distribution build steps here.
38- python -m pip install build
38+
39+ - name : Set up QEMU
40+ if : runner.os == 'Linux' && runner.arch == 'X64'
41+ uses : docker/setup-qemu-action@v3
42+ with :
43+ platforms : all
3944
4045 - name : Build wheels
4146 uses : pypa/cibuildwheel@v3.0.1
42- # env:
47+ env :
48+ CIBW_ARCHS_LINUX : ${{ runner.arch == 'X64' && 'auto ppc64le' || 'auto' }}
4349 with :
4450 package-dir : .
4551 output-dir : wheelhouse
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ before-all = [
3131]
3232
3333[tool .cibuildwheel .linux .environment ]
34- cuda = " 12.9 "
34+ cuda = " 12.4 "
3535temp = " /tmp/cuda-temp"
3636CUDA_PATH = " /usr/local/cuda-${cuda}"
3737PATH = " ${PATH}:${CUDA_PATH}/bin"
Original file line number Diff line number Diff line change 77from setuptools import setup , find_packages
88from pybind11 .setup_helpers import Pybind11Extension , build_ext
99
10- __version__ = "0.0.6-rc1 "
10+ __version__ = "0.0.6"
1111
1212def main ():
1313 cwd = os .path .dirname (os .path .abspath (__file__ ))
You can’t perform that action at this time.
0 commit comments