Skip to content

Commit edd66b9

Browse files
correct pipeline
1 parent 8bfb96b commit edd66b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
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'

0 commit comments

Comments
 (0)