Skip to content

Commit 6149b7e

Browse files
committed
ci(windows): add windows back to ci
1 parent e5982a8 commit 6149b7e

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install dependencies
1515
run: |
1616
python -m pip install --upgrade pip
17-
pip install build
17+
python -m pip install --upgrade build
1818
- name: Build sdist
1919
run: python -m build --sdist
2020
- uses: actions/upload-artifact@v4
@@ -27,16 +27,17 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
os: [ubuntu-latest, macos-latest, macos-14]
30+
os: [ubuntu-latest, macos-latest, macos-14, windows-latest]
3131
env:
32-
MACOSX_DEPLOYMENT_TARGET: '15.0'
32+
MACOSX_DEPLOYMENT_TARGET: '15.0'
33+
CIBW_BUILD_VERBOSITY: '1'
3334
steps:
3435
- uses: actions/checkout@v4
3536
- uses: actions/setup-python@v5
3637
- name: Install dependencies
3738
run: |
3839
python -m pip install --upgrade pip
39-
pip install cibuildwheel
40+
python -m pip install --upgrade "cibuildwheel>=2.20,<3"
4041
- if: matrix.os == 'macos-latest' || matrix.os == 'macos-14'
4142
run: |
4243
brew install cgal
@@ -72,7 +73,7 @@ jobs:
7273
echo $CMAKE_ARGS
7374
- name: Build wheels
7475
run: |
75-
cibuildwheel --output-dir dist
76+
python -m cibuildwheel --output-dir dist
7677
- uses: actions/upload-artifact@v4
7778
with:
7879
name: wheels-${{ matrix.os }}

0 commit comments

Comments
 (0)