Skip to content

Commit

Permalink
Refine does not yet support abi3 error message to include interpreter…
Browse files Browse the repository at this point in the history
… version
  • Loading branch information
messense committed Nov 28, 2024
1 parent 178d1dd commit f6e2bb3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/build_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,7 @@ impl BuildContext {
if !non_abi3_interps.is_empty() {
let interp_names: HashSet<_> = non_abi3_interps
.iter()
.map(|interp| match interp.interpreter_kind {
InterpreterKind::CPython | InterpreterKind::GraalPy => {
interp.implementation_name.to_string()
}
InterpreterKind::PyPy => "PyPy".to_string(),
})
.map(|interp| format!("{}{}{}", interp, interp.major, interp.minor))
.collect();
eprintln!(
"⚠️ Warning: {} does not yet support abi3 so the build artifacts will be version-specific.",
Expand Down

0 comments on commit f6e2bb3

Please sign in to comment.