try 14.0 msvc toolset #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build + Release Wheels | |
on: | |
push: | |
jobs: | |
build-wheels: | |
name: "${{ matrix.os }} :: ${{ matrix.platform }}-${{ matrix.arch }}" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
platform: "win" | |
arch: "AMD64" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Support long paths | |
if: runner.os == 'Windows' | |
run: git config --system core.longpaths true | |
- name: Set up msvc on Windows | |
if: runner.os == 'Windows' | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{ matrix.arch }} | |
toolset: "14.0" | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS: "${{ matrix.arch }}" | |
# restrict to a single Python version as wheel does not depend on Python: | |
CIBW_BUILD: "cp311-${{ matrix.platform }}*" |