From f9427ff45260415fa472700cf390c4802ac4c555 Mon Sep 17 00:00:00 2001 From: xiaowuhu Date: Thu, 7 Apr 2022 15:40:59 +0800 Subject: [PATCH 1/3] update test Signed-off-by: xiaowuhu --- .azure-pipelines/linux-conda-CI.yml | 6 ++++++ .azure-pipelines/win32-conda-CI.yml | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/.azure-pipelines/linux-conda-CI.yml b/.azure-pipelines/linux-conda-CI.yml index 324bde49..f9727ef2 100644 --- a/.azure-pipelines/linux-conda-CI.yml +++ b/.azure-pipelines/linux-conda-CI.yml @@ -14,6 +14,12 @@ jobs: vmImage: 'ubuntu-latest' strategy: matrix: + Python39-1110-RT1110: + python.version: '3.9' + ONNX_PATH: onnx==1.11.0 # '-i https://test.pypi.org/simple/ onnx==1.9.101' + ONNXRT_PATH: onnxruntime==1.11.0 #'-i https://test.pypi.org/simple/ ort-nightly==1.11.0.dev20220311003' + COREML_PATH: git+https://github.com/apple/coremltools@3.1 + Python39-1110-RT1100: python.version: '3.9' ONNX_PATH: onnx==1.11.0 # '-i https://test.pypi.org/simple/ onnx==1.9.101' diff --git a/.azure-pipelines/win32-conda-CI.yml b/.azure-pipelines/win32-conda-CI.yml index f613ec03..37f15cd0 100644 --- a/.azure-pipelines/win32-conda-CI.yml +++ b/.azure-pipelines/win32-conda-CI.yml @@ -14,6 +14,13 @@ jobs: vmImage: 'windows-latest' strategy: matrix: + + Python39-1110-RT1110: + python.version: '3.9' + ONNX_PATH: onnx==1.11.0 # '-i https://test.pypi.org/simple/ onnx==1.9.101' + ONNXRT_PATH: onnxruntime==1.11.0 #'-i https://test.pypi.org/simple/ ort-nightly==1.11.0.dev20220311003' + COREML_PATH: git+https://github.com/apple/coremltools@3.1 + Python39-1110-RT190: python.version: '3.9' ONNX_PATH: 'onnx==1.11.0' # '-i https://test.pypi.org/simple/ onnx==1.9.101' From aeae6e8f4518d8da02a901ab6d90318e5cfe1705 Mon Sep 17 00:00:00 2001 From: xiaowuhu Date: Fri, 8 Apr 2022 16:56:38 +0800 Subject: [PATCH 2/3] update author info Signed-off-by: xiaowuhu --- onnxmltools/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/onnxmltools/__init__.py b/onnxmltools/__init__.py index 54127e04..318c631e 100644 --- a/onnxmltools/__init__.py +++ b/onnxmltools/__init__.py @@ -6,7 +6,7 @@ which is a common language to describe any machine learned model. """ __version__ = "1.11.0" -__author__ = "Microsoft" +__author__ = "ONNX" __producer__ = "OnnxMLTools" __producer_version__ = __version__ __domain__ = "onnxml" diff --git a/setup.py b/setup.py index 752b6574..126758b2 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,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/onnxmltools', packages=packages, include_package_data=True, From 8af26b6eaaeb8b4dc125f1a2e7ee7021d0a39ddf Mon Sep 17 00:00:00 2001 From: xiaowuhu Date: Mon, 11 Apr 2022 14:05:17 +0800 Subject: [PATCH 3/3] Update linux-conda-CI.yml Signed-off-by: xiaowuhu --- .azure-pipelines/linux-conda-CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/linux-conda-CI.yml b/.azure-pipelines/linux-conda-CI.yml index f9727ef2..a071252c 100644 --- a/.azure-pipelines/linux-conda-CI.yml +++ b/.azure-pipelines/linux-conda-CI.yml @@ -9,7 +9,7 @@ trigger: jobs: - job: 'Test' - timeoutInMinutes: 25 + timeoutInMinutes: 30 pool: vmImage: 'ubuntu-latest' strategy: