File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3434 set -xe
3535 python --version
3636 python -m pip install --upgrade pip
37- if [[ "$SKLEARN_VERSION" == "nightly " ]]; then
38- # This also installs latest numpy, scipy and joblib .
39- pip install --pre scikit-learn
37+ if [[ "$SKLEARN_VERSION" == "* " ]]; then
38+ # Install latest versions of dependencies .
39+ python -m pip install scikit-learn
4040 else
4141 python -m pip install numpy==$NUMPY_VERSION scipy==$SCIPY_VERSION scikit-learn==$SKLEARN_VERSION
4242 fi
@@ -123,12 +123,12 @@ jobs:
123123 python.version : ' 3.10'
124124 NUMPY_VERSION : " 1.26.1"
125125 SCIPY_VERSION : " 1.11.3"
126- SKLEARN_VERSION : " * "
126+ SKLEARN_VERSION : " 1.3.2 "
127127 Python311 :
128128 python.version : ' 3.10'
129129 NUMPY_VERSION : " 1.26.1"
130130 SCIPY_VERSION : " 1.11.3"
131- SKLEARN_VERSION : " * "
131+ SKLEARN_VERSION : " 1.3.2 "
132132
133133 variables :
134134 OMP_NUM_THREADS : ' 2'
You can’t perform that action at this time.
0 commit comments