File tree 4 files changed +27
-4
lines changed
4 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 13
13
vmImage : ' ubuntu-latest'
14
14
strategy :
15
15
matrix :
16
+ Py39-Onnx1110-Rt1110-Skl10 :
17
+ do.bench : ' 0'
18
+ python.version : ' 3.9'
19
+ numpy.version : ' >=1.21.0'
20
+ scipy.version : ' >=1.7.0'
21
+ onnx.version : ' onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'
22
+ onnx.target_opset : ' '
23
+ onnxrt.version : ' onnxruntime==1.11.0' # -i https://test.pypi.org/simple/ ort-nightly==1.11.0.dev20220311003
24
+ sklearn.version : ' >=1.0'
25
+ lgbm.version : ' '
26
+ onnxcc.version : ' >=1.8.1' # git
27
+ run.example : ' 1'
16
28
Py39-Onnx1110-Rt1100-Skl10 :
17
29
do.bench : ' 0'
18
30
python.version : ' 3.9'
@@ -303,6 +315,8 @@ jobs:
303
315
echo "---------------"
304
316
pip show scikit-learn
305
317
echo "---------------"
318
+ pip show onnxmltools
319
+ echo "---------------"
306
320
displayName: 'version'
307
321
308
322
- script : |
@@ -332,7 +346,7 @@ jobs:
332
346
conda install -c conda-forge "lightgbm${lgbm.version}" xgboost --no-deps
333
347
pip install xgboost lightgbm hummingbird-ml hummingbird
334
348
pip install --no-deps git+https://github.com/microsoft/onnxconverter-common.git
335
- pip install --no-deps git+https://github.com/onnx/ onnxmltools.git
349
+ pip install onnxmltools
336
350
displayName: 'install onnxmltools'
337
351
338
352
- script : |
Original file line number Diff line number Diff line change 13
13
vmImage : ' windows-latest'
14
14
strategy :
15
15
matrix :
16
+ Py39-Onnx1110-Rt1110-Skl10 :
17
+ python.version : ' 3.9'
18
+ onnx.version : ' onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'
19
+ onnx.target_opset : ' '
20
+ numpy.version : ' numpy>=1.22.3'
21
+ scipy.version : ' scipy'
22
+ onnxrt.version : ' onnxruntime==1.11.0' # -i https://test.pypi.org/simple/ ort-nightly==1.11.0.dev20220311003
23
+ onnxcc.version : ' onnxconverter-common>=1.8.1' # git+https://github.com/microsoft/onnxconverter-common.git
24
+ sklearn.version : ' >=1.0'
16
25
Py39-Onnx1110-Rt1100-Skl10 :
17
26
python.version : ' 3.9'
18
27
onnx.version : ' onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'
Original file line number Diff line number Diff line change 36
36
long_description = long_description ,
37
37
long_description_content_type = 'text/markdown' ,
38
38
license = 'Apache License v2.0' ,
39
- author = 'Microsoft Corporation ' ,
40
- author_email = 'onnx@microsoft.com ' ,
39
+ author = 'ONNX ' ,
40
+ author_email = 'onnx[email protected] ' ,
41
41
url = 'https://github.com/onnx/sklearn-onnx' ,
42
42
packages = packages ,
43
43
include_package_data = True ,
Original file line number Diff line number Diff line change 3
3
"""
4
4
Main entry point to the converter from the *scikit-learn* to *onnx*.
5
5
"""
6
- __version__ = "1.11"
6
+ __version__ = "1.11.1 "
7
7
__author__ = "Microsoft"
8
8
__producer__ = "skl2onnx"
9
9
__producer_version__ = __version__
You can’t perform that action at this time.
0 commit comments