Skip to content
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

Override wheel tag with _PYTHON_HOST_PLATFORM #2122

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/build_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,10 @@ impl BuildContext {

/// Returns the platform part of the tag for the wheel name
pub fn get_platform_tag(&self, platform_tags: &[PlatformTag]) -> Result<String> {
if let Ok(host_platform) = env::var("_PYTHON_HOST_PLATFORM") {
return Ok(host_platform.replace(['.', '-'], "_"));
}

let target = &self.target;
let tag = match (&target.target_os(), &target.target_arch()) {
// Windows
Expand Down
Loading