File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 24
24
displayName: 'System info'
25
25
- script : |
26
26
conda update -y -q conda
27
- if [ $(echo $(PYTHON_VERSION) | grep '3.7') ] || [ $(echo $(PYTHON_VERSION) | grep '3.11 ') ]; then export DPCPP_PACKAGE="dpcpp-cpp-rt>=2023.2.0 "; else export DPCPP_PACKAGE="dpctl>=0.14 dpcpp-cpp-rt>=2023.2.0 "; fi
28
- conda create -q -y -n CB -c conda-forge -c intel python=$(PYTHON_VERSION) dal-devel mpich pyyaml $DPCPP_PACKAGE
27
+ if [ $(echo $(PYTHON_VERSION) | grep '3.8\|3.9\|3.10 ') ]; then export DPCPP_PACKAGE="dpctl>=0.14 "; else export DPCPP_PACKAGE=""; fi
28
+ conda create -q -y -n CB -c conda-forge -c intel python=$(PYTHON_VERSION) dal-devel mpich pyyaml $DPCPP_PACKAGE dpcpp-cpp-rt>=2023.2.0
29
29
displayName: 'Conda create'
30
30
- script : |
31
31
. /usr/share/miniconda/etc/profile.d/conda.sh
Original file line number Diff line number Diff line change 72
72
Python3.11_Sklearn1.3 :
73
73
PYTHON_VERSION : ' 3.11'
74
74
SKLEARN_VERSION : ' 1.3'
75
+ Python3.12_Sklearn1.3 :
76
+ PYTHON_VERSION : ' 3.12'
77
+ SKLEARN_VERSION : ' 1.3'
75
78
pool :
76
79
vmImage : ' ubuntu-22.04'
77
80
steps :
@@ -106,6 +109,9 @@ jobs:
106
109
Python3.11_Sklearn1.3 :
107
110
PYTHON_VERSION : ' 3.11'
108
111
SKLEARN_VERSION : ' 1.3'
112
+ Python3.12_Sklearn1.3 :
113
+ PYTHON_VERSION : ' 3.12'
114
+ SKLEARN_VERSION : ' 1.3'
109
115
pool :
110
116
vmImage : ' windows-latest'
111
117
steps :
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Cython==3.0.2
2
2
Jinja2==3.1.2
3
3
numpy==1.19.5 ; python_version <= '3.9'
4
4
numpy==1.21.6 ; python_version == '3.10'
5
- numpy==1.23.5 ; python_version >= '3.11'
5
+ numpy==1.23.5 ; python_version == '3.11'
6
+ numpy==1.26.0 ; python_version >= '3.12'
6
7
pybind11==2.10.1
7
8
cmake==3.27.4.1
Original file line number Diff line number Diff line change 1
1
xgboost==1.7.6; python_version <= '3.9'
2
2
xgboost==2.0.0; python_version >= '3.10'
3
3
lightgbm==4.1.0
4
- catboost==1.2.1
4
+ catboost==1.2.2; python_version <= '3.11'
You can’t perform that action at this time.
0 commit comments