Skip to content

Commit

Permalink
Fix the Python path for the pypy2.7 distribution (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored Sep 14, 2023
1 parent ebda9c0 commit 7ec9e08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ fn set_python_path(distribution_source: &str) {
if on_windows {
format!(r"{}\pypy.exe", directory)
} else {
format!("{}/bin/pypy3", directory)
format!("{}/bin/pypy", directory)
}
} else if on_windows {
"python.exe".to_string()
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

***Fixed:***

- Fix the Python path for the `pypy2.7` distribution

## 0.11.0 - 2023-09-07

***Added:***
Expand Down

0 comments on commit 7ec9e08

Please sign in to comment.