summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2020-04-23 16:59:20 +0200
committerGitHub <noreply@github.com>2020-04-23 16:59:20 +0200
commit1d3d2d055fcf284279a155061d5250198a2c1848 (patch)
tree5a12b6302a68e0fc6257ff7dc04296d7e0c11550
parentef12867f1425ee86b3cfddef4287b52d46114e83 (diff)
parent46445382a4ee7743bb6f254fdeaf9d0abdae44d6 (diff)
Merge pull request #159 from PythonOT/wheels_multi
[MRG] Wheels build multi-platform (again)
-rw-r--r--.github/workflows/build_wheels.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
index 7c13c33..1a4c173 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -9,8 +9,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: [ubuntu-18.04]
- # macosx-latest, windows-latest
+ os: [ubuntu-latest, macos-latest, windows-latest]
+ # macos-latest, windows-latest
steps:
- uses: actions/checkout@v1
@@ -36,6 +36,7 @@ jobs:
- name: Build wheel
env:
+ CIBW_SKIP: "pp*-win* pp*-macosx*" # remove pypy on mac and win (wrong version)
CIBW_BEFORE_BUILD: "pip install numpy cython"
run: |
python -m cibuildwheel --output-dir wheelhouse