Skip to content

Commit

Permalink
github-actions: Restrict statsmodels to <0.13.3 on x86
Browse files Browse the repository at this point in the history
statsmodels doesn't provide 32-bit wheels for >=0.13.3, and the build process tries to pull in scipy-1.9.3 triggering the issue that was addressed in e607c09 [0]

Signed-off-by: Jan Vesely <[email protected]>

[0] https://github.com/PrincetonUniversity/PsyNeuLink/actions/runs/3371876413/jobs/5594642498
  • Loading branch information
jvesely committed Nov 1, 2022
1 parent 255236b commit 72647a3
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 @@ -51,7 +51,7 @@ runs:
# terminado >= 0.10.0 pulls in pywinpty >= 1.1.0
# scipy >=1.9.2 doesn't provide win32 wheel and GA doesn't have working fortran on windows
# scikit-learn >= 1.1.3 doesn't provide win32 wheel
[[ ${{ runner.os }} = Windows* ]] && pip install "pywinpty<1" "terminado<0.10" "scipy<1.9.2" "scikit-learn<1.1.3" -c requirements.txt
[[ ${{ runner.os }} = Windows* ]] && pip install "pywinpty<1" "terminado<0.10" "scipy<1.9.2" "scikit-learn<1.1.3" "statsmodels<0.13.3" -c requirements.txt
fi
- name: Install updated package
Expand Down

0 comments on commit 72647a3

Please sign in to comment.