From fa87b09f6833942915893f807cdf39bcf0643e1b 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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8d6e253..9ad156e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [build-system] -requires = ["scikit-build-core >=0.4.3", "nanobind >=1.3.2"] +requires = ["scikit-build-core >=0.4.3", + "nanobind @ git+https://github.com/wjakob/nanobind@master"] build-backend = "scikit_build_core.build" [project] @@ -38,6 +39,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"