Skip to content

Commit 34c0657

Browse files
authored
Xiaowu rc1110 (#851)
* upgrade to 1.11.1 Signed-off-by: xiaowuhu <[email protected]> * modify CI Signed-off-by: xiaowuhu <[email protected]> * Update linux-conda-CI.yml Signed-off-by: xiaowuhu <[email protected]> * Update linux-conda-CI.yml Signed-off-by: xiaowuhu <[email protected]>
1 parent 5534f3c commit 34c0657

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

.azure-pipelines/linux-conda-CI.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ jobs:
1313
vmImage: 'ubuntu-latest'
1414
strategy:
1515
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'
1628
Py39-Onnx1110-Rt1100-Skl10:
1729
do.bench: '0'
1830
python.version: '3.9'
@@ -303,6 +315,8 @@ jobs:
303315
echo "---------------"
304316
pip show scikit-learn
305317
echo "---------------"
318+
pip show onnxmltools
319+
echo "---------------"
306320
displayName: 'version'
307321
308322
- script: |
@@ -332,7 +346,7 @@ jobs:
332346
conda install -c conda-forge "lightgbm${lgbm.version}" xgboost --no-deps
333347
pip install xgboost lightgbm hummingbird-ml hummingbird
334348
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
336350
displayName: 'install onnxmltools'
337351
338352
- script: |

.azure-pipelines/win32-conda-CI.yml

+9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ jobs:
1313
vmImage: 'windows-latest'
1414
strategy:
1515
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'
1625
Py39-Onnx1110-Rt1100-Skl10:
1726
python.version: '3.9'
1827
onnx.version: 'onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
long_description=long_description,
3737
long_description_content_type='text/markdown',
3838
license='Apache License v2.0',
39-
author='Microsoft Corporation',
40-
author_email='onnx@microsoft.com',
39+
author='ONNX',
40+
author_email='onnx[email protected]',
4141
url='https://github.com/onnx/sklearn-onnx',
4242
packages=packages,
4343
include_package_data=True,

skl2onnx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
Main entry point to the converter from the *scikit-learn* to *onnx*.
55
"""
6-
__version__ = "1.11"
6+
__version__ = "1.11.1"
77
__author__ = "Microsoft"
88
__producer__ = "skl2onnx"
99
__producer_version__ = __version__

0 commit comments

Comments
 (0)