Skip to content

Commit

Permalink
Xiaowu rc1110 (#851)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
xiaowuhu authored Mar 31, 2022
1 parent 5534f3c commit 34c0657
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
16 changes: 15 additions & 1 deletion .azure-pipelines/linux-conda-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ jobs:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Py39-Onnx1110-Rt1110-Skl10:
do.bench: '0'
python.version: '3.9'
numpy.version: '>=1.21.0'
scipy.version: '>=1.7.0'
onnx.version: 'onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'
onnx.target_opset: ''
onnxrt.version: 'onnxruntime==1.11.0' # -i https://test.pypi.org/simple/ ort-nightly==1.11.0.dev20220311003
sklearn.version: '>=1.0'
lgbm.version: ''
onnxcc.version: '>=1.8.1' # git
run.example: '1'
Py39-Onnx1110-Rt1100-Skl10:
do.bench: '0'
python.version: '3.9'
Expand Down Expand Up @@ -303,6 +315,8 @@ jobs:
echo "---------------"
pip show scikit-learn
echo "---------------"
pip show onnxmltools
echo "---------------"
displayName: 'version'
- script: |
Expand Down Expand Up @@ -332,7 +346,7 @@ jobs:
conda install -c conda-forge "lightgbm${lgbm.version}" xgboost --no-deps
pip install xgboost lightgbm hummingbird-ml hummingbird
pip install --no-deps git+https://github.com/microsoft/onnxconverter-common.git
pip install --no-deps git+https://github.com/onnx/onnxmltools.git
pip install onnxmltools
displayName: 'install onnxmltools'
- script: |
Expand Down
9 changes: 9 additions & 0 deletions .azure-pipelines/win32-conda-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ jobs:
vmImage: 'windows-latest'
strategy:
matrix:
Py39-Onnx1110-Rt1110-Skl10:
python.version: '3.9'
onnx.version: 'onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'
onnx.target_opset: ''
numpy.version: 'numpy>=1.22.3'
scipy.version: 'scipy'
onnxrt.version: 'onnxruntime==1.11.0' # -i https://test.pypi.org/simple/ ort-nightly==1.11.0.dev20220311003
onnxcc.version: 'onnxconverter-common>=1.8.1' # git+https://github.com/microsoft/onnxconverter-common.git
sklearn.version: '>=1.0'
Py39-Onnx1110-Rt1100-Skl10:
python.version: '3.9'
onnx.version: 'onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.11.0rc2'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License v2.0',
author='Microsoft Corporation',
author_email='onnx@microsoft.com',
author='ONNX',
author_email='onnx[email protected]',
url='https://github.com/onnx/sklearn-onnx',
packages=packages,
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion skl2onnx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Main entry point to the converter from the *scikit-learn* to *onnx*.
"""
__version__ = "1.11"
__version__ = "1.11.1"
__author__ = "Microsoft"
__producer__ = "skl2onnx"
__producer_version__ = __version__
Expand Down

0 comments on commit 34c0657

Please sign in to comment.