When I run `pip wheel` to create a wheel from the source distribution, pip wants to install a `cmake` package. This was previously reported as #479 with an earlier fix in #480 based on the change in scikit-build-core at https://github.com/scikit-build/scikit-build-core/commit/c67339b4493e1df4a5ff10d92a72cc362db18d0e The scikit-build-core code at https://github.com/scikit-build/scikit-build-core/blob/main/src/scikit_build_core/build/__init__.py#L126 looks for `requires.settings.wheel.cmake` which translates in the `pyproject.toml` file to needing ``` [tool.scikit-build] wheel.cmake=false ``` To ensure cmake is not needed for building sdists, we should also add ``` [tool.scikit-build] sdist.cmake=false ``` The previous change added ``` [tool.scikit-build] cmake.version = "" # We are cmake, so don't request cmake ``` but that location isn't being checked.