-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change cmake.verbose = true
to build.verbose = true
#99
Conversation
cmake.verbose = true
cmake.verbose = true
to build.verbose = true
Use now preferred CMake version constraint mechanism. https://scikit-build-core.readthedocs.io/en/latest/configuration.html#cmake-and-ninja-minimum-versions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Hope it's ok, I pushed a commit adding the other changes for rapidsai/build-planning#58 here as they seemed relevant (setting a floor of scikit-build-core >= 0.10.0
, reading the CMake minimum from CMakeLists.txt
). Feel free to revert if you disagree, I won't merge this until you've had a chance to respond to that.
Restarting CI |
Thanks all! 🙏 |
* Fix building tests in multi-gpu environment (#98) * Change cmake.verbose = true to build.verbose = true (#99) * Use build-system.requires to set scikit-build-core minimum version (#100) * Set CUDA version in one file (and use everywhere else) (#101) * Drop Python 3.9 support (#102) * Use CI workflow branch 'branch-24.10' again (#105) * Use conda strict channel priority. (#109) * Update to CUDA 12.6 (#97)
As
cmake.verbose = true
is deprecated, drop it from the configReplace it with the now preferred
build.verbose = true
Also switch from
cmake.minimum-version
tocmake.version
, which fixes a CI errorRequire scikit-build-core 0.10.0+