-
Notifications
You must be signed in to change notification settings - Fork 66
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
Allow better control over wheel tags #639
Comments
IIRC this should work. Just tested with https://github.com/mesonbuild/meson-python/tree/main/tests/packages/executable, which yields:
What would you expect if not those tags? |
Yes, but the code makes some assumptions that aren't true for our project. meson-python/mesonpy/__init__.py Lines 319 to 349 in 063fe8b
Specifically, it assumes that we are not installing platform binary files to the Python directory, and that all files in |
Got it, thanks. Yes, we are trying to infer tags and that isn't correct in this case. It's actually not so easy to always be 100% correct here, which is why some other build backends have an override mechanism to force the tags to be a certain value. Let's see if we can fix the logic first though. This case (a few |
IIRC the |
Yes, I think the best you we can do right now would be looking at the meson tags, but I think it'd be better to also have the option to override. |
https://github.com/pypackaging-native/pkgconf-pypi produces platform-specific but Python-independent tags. RIght now, I don't think there's any way to expose this.
The text was updated successfully, but these errors were encountered: