From db7e440a8bdfb789cff8f1d03e688d1ffc06b91e Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 8 Sep 2020 22:26:00 +0200 Subject: [PATCH] Updated azure pipeline for Python 3.8 --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8ca89537b..55921a370 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,6 +25,9 @@ jobs: cp37-cp37m-win_amd64.whl: python.version: '3.7' python.architecture: 'x64' + cp38-cp38-win_amd64.whl: + python.version: '3.8' + python.architecture: 'x64' cp35-cp35m-win32.whl: python.version: '3.5' python.architecture: 'x86' @@ -34,6 +37,9 @@ jobs: cp37-cp37m-win32.whl: python.version: '3.7' python.architecture: 'x86' + cp38-cp38-win32.whl: + python.version: '3.8' + python.architecture: 'x86' maxParallel: 6 steps: @@ -117,6 +123,11 @@ jobs: vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04' steps: - checkout: none #skip checking out the default repository resource + - task: DownloadBuildArtifacts@0 + displayName: 'Download Build Artifacts wheel-3.8.x64' + inputs: + artifactName: 'wheel-3.8.x64' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.7.x64' inputs: @@ -132,6 +143,11 @@ jobs: inputs: artifactName: 'wheel-3.5.x64' downloadPath: '$(System.DefaultWorkingDirectory)' + - task: DownloadBuildArtifacts@0 + displayName: 'Download Build Artifacts wheel-3.8.x86' + inputs: + artifactName: 'wheel-3.8.x86' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.7.x86' inputs: