We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SKBUILD_SABI_VERSION
To follow-up on https://github.com/orgs/scikit-build/discussions/1128#discussioncomment-11489351 answering a question from @minrk, I suggest we introduce the CMake cache variable SKBUILD_SABI_VERSION set from the value associated with the wheel.py-api setting.
wheel.py-api
Related documentation:
Related issues & pull requests:
Development.SABIModule
The text was updated successfully, but these errors were encountered:
That way we could simply do the following:
if(NOT "${SKBUILD_SABI_COMPONENT}" STREQUAL "") python_add_library(some_ext MODULE WITH_SOABI USE_SABI ${SKBUILD_SABI_VERSION} ...) else() python_add_library(some_ext MODULE WITH_SOABI ...) endif()
Sorry, something went wrong.
if(NOT "${SKBUILD_SABI_VERSION}" STREQUAL "") set(_sabi "USE_SABI ${SKBUILD_SABI_VERSION}") endif() python_add_library(some_ext MODULE WITH_SOABI ${_sabi})
That would be great!
Successfully merging a pull request may close this issue.
To follow-up on https://github.com/orgs/scikit-build/discussions/1128#discussioncomment-11489351 answering a question from @minrk, I suggest we introduce the CMake cache variable
SKBUILD_SABI_VERSION
set from the value associated with thewheel.py-api
setting.Related documentation:
Related issues & pull requests:
Development.SABIModule
was requested #957The text was updated successfully, but these errors were encountered: