-
-
Notifications
You must be signed in to change notification settings - Fork 278
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
Use generic tags when sys.implementation.name
!= platform.python_implementation()
#1232
Conversation
✅ Deploy Preview for maturin-guide ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
…mplementation()` For example pyston
/// Comes from `sys.platform.name` | ||
pub implmentation_name: String, | ||
/// Comes from sysconfig var `SOABI` | ||
pub soabi: Option<String>, |
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.
Ideally implmentation_name
and soabi
should be moved to InterpreterConfig
and abi_tag
should changed to derive from soabi
in Rust instead, but that requires updating all of the bundled sysconfig
files, we can do that later.
bors r+ |
Build succeeded: |
Note: All of the abi3 wheel build tests failed on Pyston since it does have support for stable abi yet. |
Closes #1230