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 34
34
set -xe
35
35
python --version
36
36
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
40
40
else
41
41
python -m pip install numpy==$NUMPY_VERSION scipy==$SCIPY_VERSION scikit-learn==$SKLEARN_VERSION
42
42
fi
@@ -123,12 +123,12 @@ jobs:
123
123
python.version : ' 3.10'
124
124
NUMPY_VERSION : " 1.26.1"
125
125
SCIPY_VERSION : " 1.11.3"
126
- SKLEARN_VERSION : " * "
126
+ SKLEARN_VERSION : " 1.3.2 "
127
127
Python311 :
128
128
python.version : ' 3.10'
129
129
NUMPY_VERSION : " 1.26.1"
130
130
SCIPY_VERSION : " 1.11.3"
131
- SKLEARN_VERSION : " * "
131
+ SKLEARN_VERSION : " 1.3.2 "
132
132
133
133
variables :
134
134
OMP_NUM_THREADS : ' 2'
You can’t perform that action at this time.
0 commit comments