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.
2 parents f8adf2a + 873ea89 commit 233d476Copy full SHA for 233d476
.github/workflows/build_wheels.yml
@@ -62,7 +62,10 @@ jobs:
62
63
- name: Build 32 bits wheels on Windows
64
if: matrix.os == 'windows-latest'
65
- run: python -m cibuildwheel --output-dir wheelhouse
+ run: |
66
+ choco install --yes visualstudio2019community
67
+ choco install --yes visualstudio2019-workload-nativedesktop
68
+ python -m cibuildwheel --output-dir wheelhouse
69
env:
70
CIBW_ENVIRONMENT: "PYBAMM_USE_VCPKG=ON VCPKG_ROOT_DIR=$VCPKG_INSTALLATION_ROOT VCPKG_DEFAULT_TRIPLET=x86-windows-static VCPKG_FEATURE_FLAGS=manifests,registries CMAKE_GENERATOR=\"Visual Studio 16 2019\" CMAKE_GENERATOR_PLATFORM=Win32"
71
CIBW_ARCHS: "x86"
0 commit comments