Skip to content

Commit 009f87c

Browse files
version 0.0.6 alpha
1 parent 3a88c1e commit 009f87c

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/python-publish.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ permissions:
1818
jobs:
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/[email protected]
42-
# env:
47+
env:
48+
CIBW_ARCHS_LINUX: ${{ runner.arch == 'X64' && 'auto ppc64le' || 'auto' }}
4349
with:
4450
package-dir: .
4551
output-dir: wheelhouse

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ before-all = [
3131
]
3232

3333
[tool.cibuildwheel.linux.environment]
34-
cuda = "12.9"
34+
cuda = "12.4"
3535
temp = "/tmp/cuda-temp"
3636
CUDA_PATH = "/usr/local/cuda-${cuda}"
3737
PATH = "${PATH}:${CUDA_PATH}/bin"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools import setup, find_packages
88
from pybind11.setup_helpers import Pybind11Extension, build_ext
99

10-
__version__ = "0.0.6-rc1"
10+
__version__ = "0.0.6"
1111

1212
def main():
1313
cwd = os.path.dirname(os.path.abspath(__file__))

0 commit comments

Comments
 (0)