Skip to content

Commit

Permalink
Merge pull request #1802 from msimacek/msimacek/fix-graalpy
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 11, 2023
2 parents 1123fa0 + 2382ab3 commit 8d4b482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_interpreter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,9 @@ impl PythonInterpreter {
}
InterpreterKind::GraalPy => {
// GraalPy like PyPy uses its version as part of the ABI
// graalpy 3.10 23.1 => numpy-1.23.5-graalpy310-graalpy231_310_native_manylinux2014_x86_64.whl
// graalpy 3.10 23.1 => numpy-1.23.5-graalpy310-graalpy231_310_native-manylinux2014_x86_64.whl
format!(
"graalpy{major}{minor}-{abi_tag}_{platform}",
"graalpy{major}{minor}-{abi_tag}-{platform}",
major = self.major,
minor = self.minor,
abi_tag = calculate_abi_tag(&self.ext_suffix)
Expand Down

0 comments on commit 8d4b482

Please sign in to comment.