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 771f035 commit 20bc614Copy full SHA for 20bc614
1 file changed
.github/workflows/pypi.yml
@@ -22,14 +22,22 @@ jobs:
22
path: ./dist/*.tar.gz
23
wheels:
24
name: Build wheels
25
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
26
+ strategy:
27
+ matrix:
28
+ os: [ubuntu-latest,macos-latest]
29
+ env:
30
+ MACOSX_DEPLOYMENT_TARGET: "10.13"
31
steps:
32
- uses: actions/checkout@v4
33
- uses: actions/setup-python@v5
34
- name: Install dependencies
35
run: |
36
python -m pip install --upgrade pip
37
pip install cibuildwheel
38
+ - if: matrix.os == 'macos-latest'
39
+ run: |
40
+ brew install cgal
41
- name: Build wheels
42
43
cibuildwheel --output-dir dist
0 commit comments