Skip to content

Commit 4644538

Browse files
committed
final version
1 parent d676bc7 commit 4644538

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,15 @@ name: Build dist and wheels
22

33
on:
44
release:
5-
push:
6-
branches:
7-
- "wheels_multi"
85

96
jobs:
107
build_wheels:
118
name: ${{ matrix.os }}
129
runs-on: ${{ matrix.os }}
1310
strategy:
1411
matrix:
15-
os: [ubuntu-18.04, macos-latest, windows-latest]
16-
# macosx-latest, windows-latest
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
# macos-latest, windows-latest
1714

1815
steps:
1916
- uses: actions/checkout@v1
@@ -39,7 +36,7 @@ jobs:
3936
4037
- name: Build wheel
4138
env:
42-
CIBW_SKIP: "pp*-win* pp*-macosx*"
39+
CIBW_SKIP: "pp*-win* pp*-macosx*" # remove pypy on mac and win (wrong version)
4340
CIBW_BEFORE_BUILD: "pip install numpy cython"
4441
run: |
4542
python -m cibuildwheel --output-dir wheelhouse

0 commit comments

Comments
 (0)