Skip to content

Commit

Permalink
github-actions: Restrict scipy to <1.9.2 on x86 (PrincetonUniversity#…
Browse files Browse the repository at this point in the history
…2502)

scipy doesn't provide 32-bit wheels for >=1.9.2

Signed-off-by: Jan Vesely <[email protected]>
  • Loading branch information
jvesely authored Oct 19, 2022
1 parent 3bdc151 commit e607c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/install-pnl/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ runs:
sed -i /modeci_mdf/d requirements.txt
# pywinpty is a transitive dependency and v1.0+ removed support for x86 wheels
# terminado >= 0.10.0 pulls in pywinpty >= 1.1.0
[[ ${{ runner.os }} = Windows* ]] && pip install "pywinpty<1" "terminado<0.10"
[[ ${{ runner.os }} = Windows* ]] && pip install "pywinpty<1" "terminado<0.10" "scipy<1.9.2" -c requirements.txt
fi
- name: Install updated package
Expand Down

0 comments on commit e607c09

Please sign in to comment.