You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OK, I can't find why, but I get different results for python 3.10 and 3.11, even for the same versions of pyproject_hooks and scikit-build-core. I think this is an issue in some other part of the tool chain, so I'll close this out and look for another way to work around it.
Sorry for the noise, and thanks for the quick response!
When I run
pip wheel
to create a wheel from the source distribution, pip wants to install acmake
package.This was previously reported as #479 with an earlier fix in #480 based on the change in scikit-build-core at scikit-build/scikit-build-core@c67339b
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 thepyproject.toml
file to needingTo ensure cmake is not needed for building sdists, we should also add
The previous change added
but that location isn't being checked.
The text was updated successfully, but these errors were encountered: