diff --git a/.github/actions/install-pnl/action.yml b/.github/actions/install-pnl/action.yml index 724beaf12e2..b48495e2e34 100644 --- a/.github/actions/install-pnl/action.yml +++ b/.github/actions/install-pnl/action.yml @@ -49,7 +49,9 @@ 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" "scipy<1.9.2" -c requirements.txt + # 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 fi - name: Install updated package