Skip to content

Commit

Permalink
Override wheel tag with _PYTHON_HOST_PLATFORM (#2122)
Browse files Browse the repository at this point in the history
* Override wheel tag with _PYTHON_HOST_PLATFORM

* Fix linting
  • Loading branch information
FeodorFitsner authored Jun 27, 2024
1 parent c2fd883 commit 939b753
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 939b753

Please sign in to comment.