diff --git a/.azure-pipelines/linux-conda-CI.yml b/.azure-pipelines/linux-conda-CI.yml index 1cc22da34..ca6d16855 100644 --- a/.azure-pipelines/linux-conda-CI.yml +++ b/.azure-pipelines/linux-conda-CI.yml @@ -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' @@ -303,6 +315,8 @@ jobs: echo "---------------" pip show scikit-learn echo "---------------" + pip show onnxmltools + echo "---------------" displayName: 'version' - script: | @@ -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: | diff --git a/.azure-pipelines/win32-conda-CI.yml b/.azure-pipelines/win32-conda-CI.yml index 2b12d0627..a2f50e7df 100644 --- a/.azure-pipelines/win32-conda-CI.yml +++ b/.azure-pipelines/win32-conda-CI.yml @@ -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' diff --git a/setup.py b/setup.py index 43c88c0bc..5961f964b 100644 --- a/setup.py +++ b/setup.py @@ -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-technical-discuss@lists.lfaidata.foundation', url='https://github.com/onnx/sklearn-onnx', packages=packages, include_package_data=True, diff --git a/skl2onnx/__init__.py b/skl2onnx/__init__.py index e387451ea..eb4064b84 100644 --- a/skl2onnx/__init__.py +++ b/skl2onnx/__init__.py @@ -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__