Skip to content

Commit 9c134b0

Browse files
committed
Wheelhouse V1
1 parent 9d4181f commit 9c134b0

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.github/workflows/wheels_v2.yml

Whitespace-only changes.

.github/workflows/wheels_v3.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build Wheels
2+
3+
on:
4+
push:
5+
branches:
6+
- sdfsfsaf
7+
8+
9+
10+
jobs:
11+
build_wheels:
12+
name: Build wheels on ${{ matrix.os }}
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest, windows-latest, macos-latest]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-python@v5
21+
- name: Install cibuildwheel
22+
run: python -m pip install cibuildwheel==2.23.2
23+
- name: "Install dependencies"
24+
run: |
25+
pip install setuptools wheel numpy cython
26+
- name: Build wheels
27+
run: python -m cibuildwheel --output-dir wheelhouse
28+
- uses: actions/upload-artifact@v4
29+
with:
30+
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
31+
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)