From 6dde94539f1cf997fa2f503e02f8bf71ffe032e2 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 28 Jan 2021 19:31:27 -0500 Subject: [PATCH 1/3] CI: remove windows python pre-release which is not running It never worked quite right due to issues installing dependencies --- azure-pipelines.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3c8227b6f26f..b06074e9932a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,9 +23,6 @@ strategy: Windows_py38: vmImage: 'windows-latest' python.version: '3.8' - Windows_pyPre: - vmImage: 'vs2017-win2016' - python.version: 'Pre' maxParallel: 4 pool: From 4359a6cf390957b01fc8e55514731c270ae5f28f Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 28 Jan 2021 19:31:59 -0500 Subject: [PATCH 2/3] CI: add py39 to azure matrix --- azure-pipelines.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b06074e9932a..5112556df222 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,18 +11,27 @@ strategy: Linux_py38: vmImage: 'ubuntu-16.04' python.version: '3.8' + Linux_py38: + vmImage: 'ubuntu-16.04' + python.version: '3.9' macOS_py37: vmImage: 'macOS-10.15' python.version: '3.7' macOS_py38: vmImage: 'macOS-latest' python.version: '3.8' + macOS_py38: + vmImage: 'macOS-latest' + python.version: '3.9' Windows_py37: vmImage: 'vs2017-win2016' python.version: '3.7' Windows_py38: vmImage: 'windows-latest' python.version: '3.8' + Windows_py38: + vmImage: 'windows-latest' + python.version: '3.9' maxParallel: 4 pool: From 63f1ce9470fca99afade2d2d867729411a320b34 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Wed, 3 Feb 2021 15:01:22 -0500 Subject: [PATCH 3/3] CI: fix job names Co-authored-by: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5112556df222..b9d96c285e82 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,7 @@ strategy: Linux_py38: vmImage: 'ubuntu-16.04' python.version: '3.8' - Linux_py38: + Linux_py39: vmImage: 'ubuntu-16.04' python.version: '3.9' macOS_py37: @@ -20,7 +20,7 @@ strategy: macOS_py38: vmImage: 'macOS-latest' python.version: '3.8' - macOS_py38: + macOS_py39: vmImage: 'macOS-latest' python.version: '3.9' Windows_py37: @@ -29,7 +29,7 @@ strategy: Windows_py38: vmImage: 'windows-latest' python.version: '3.8' - Windows_py38: + Windows_py39: vmImage: 'windows-latest' python.version: '3.9' maxParallel: 4