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

Apply workaround to install Pyyaml #83

Merged
merged 7 commits into from
Jul 18, 2023
Prev Previous commit
Next Next commit
fix syntax issue
  • Loading branch information
hawflau committed Jul 17, 2023
commit b9bd5a419ff9559f9076140340f4ece3e5f10526
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async function installSamCli(python, version) {
"-m",
"pip",
"install",
'"cython<3.0.0"',
"cython<3.0.0",
"pyyaml==5.4.1",
hoffa marked this conversation as resolved.
Show resolved Hide resolved
"--no-build-isolation",
]);
Expand Down
2 changes: 1 addition & 1 deletion lib/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async function installSamCli(python, version) {
"-m",
"pip",
"install",
'"cython<3.0.0"',
"cython<3.0.0",
"pyyaml==5.4.1",
"--no-build-isolation",
]);
Expand Down