-
Notifications
You must be signed in to change notification settings - Fork 2
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
RFC: Add convert_to_generic_platform
function to wheeltools module
#2
Comments
Following discussion with @anthrotype, the project has been transferred to the scikit-build organization. See here for more details about this. |
Yes, I'd like that! |
Thanks for the feedback. I should be able to move this forward in the next few weeks. In the mean time, does the name |
to me, that sounds a bit ambiguous because the "platform" (e.g. |
Thanks for the feedback. Makes sense. What about :
or
|
yeah, both of the latter work better than |
came across this possibly related upstream wheel issue: pypa/wheel#175 |
When creating wheels packaging executable and tools that (1) are compiled and (2) do not have any dependency on the python ABI, it is convenient to update the wheel to capture that.
Doing so avoid to compile a set of wheels for each python release.
For example, these wheels
can be updated to:
In the context of the cmake-python-distributions, we already wrote a CLI (that depends on wheeltools) to perform this transformation.
See convert_to_generic_platform_wheel.py
Since we would like to easily re-use the corresponding functionality in other projects (e.g ninja-python-distributions), it would be nice to contribute the functionality to this project.
@anthrotype What do you think ?
The text was updated successfully, but these errors were encountered: