We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d676bc7 commit 4644538Copy full SHA for 4644538
.github/workflows/build_wheels.yml
@@ -2,18 +2,15 @@ name: Build dist and wheels
2
3
on:
4
release:
5
- push:
6
- branches:
7
- - "wheels_multi"
8
9
jobs:
10
build_wheels:
11
name: ${{ matrix.os }}
12
runs-on: ${{ matrix.os }}
13
strategy:
14
matrix:
15
- os: [ubuntu-18.04, macos-latest, windows-latest]
16
- # macosx-latest, windows-latest
+ os: [ubuntu-latest, macos-latest, windows-latest]
+ # macos-latest, windows-latest
17
18
steps:
19
- uses: actions/checkout@v1
@@ -39,7 +36,7 @@ jobs:
39
36
40
37
- name: Build wheel
41
38
env:
42
- CIBW_SKIP: "pp*-win* pp*-macosx*"
+ CIBW_SKIP: "pp*-win* pp*-macosx*" # remove pypy on mac and win (wrong version)
43
CIBW_BEFORE_BUILD: "pip install numpy cython"
44
run: |
45
python -m cibuildwheel --output-dir wheelhouse
0 commit comments