From e9a80c692d308bbafabc894b5c5645d8c9cf3de2 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Tue, 19 Mar 2024 09:23:13 +0100 Subject: [PATCH] build arm64 wheels on windows --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8d6e253..59cb1d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,9 @@ build-verbosity = 1 test-command = "pytest {project}/tests" test-requires = "pytest" +[tool.cibuildwheel.windows] +archs = ["x86", "AMD64", "ARM64"] + # Needed for full C++17 support [tool.cibuildwheel.macos.environment] MACOSX_DEPLOYMENT_TARGET = "10.14"