diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 232e431..d47d269 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -50,6 +50,7 @@ jobs: - uses: pypa/cibuildwheel@v2.12.0 env: CIBW_ARCHS_MACOS: universal2 + CIBW_ARCHS_WINDOWS: auto ARM64 - name: Verify clean directory run: git diff --exit-code diff --git a/CMakeLists.txt b/CMakeLists.txt index f635421..a531120 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.15...3.25) +cmake_minimum_required(VERSION 3.15...3.26) project(${SKBUILD_PROJECT_NAME} VERSION ${SKBUILD_PROJECT_VERSION}) diff --git a/pyproject.toml b/pyproject.toml index 02387c2..38e72af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["scikit-build-core", "pybind11"] +requires = ["scikit-build-core>=0.2.1", "pybind11"] build-backend = "scikit_build_core.build"