diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55921a370..551027868 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,6 +28,9 @@ jobs: cp38-cp38-win_amd64.whl: python.version: '3.8' python.architecture: 'x64' + cp38-cp38-win_amd64.whl: + python.version: '3.9' + python.architecture: 'x64' cp35-cp35m-win32.whl: python.version: '3.5' python.architecture: 'x86' @@ -40,6 +43,9 @@ jobs: cp38-cp38-win32.whl: python.version: '3.8' python.architecture: 'x86' + cp39-cp39-win32.whl: + python.version: '3.9' + python.architecture: 'x86' maxParallel: 6 steps: @@ -123,6 +129,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.9.x64' + inputs: + artifactName: 'wheel-3.9.x64' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.8.x64' inputs: @@ -143,6 +154,11 @@ jobs: inputs: artifactName: 'wheel-3.5.x64' downloadPath: '$(System.DefaultWorkingDirectory)' + - task: DownloadBuildArtifacts@0 + displayName: 'Download Build Artifacts wheel-3.9.x86' + inputs: + artifactName: 'wheel-3.9.x86' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.8.x86' inputs: