From 1866d318d2d035b8e6973ae766b9722824f38b93 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 5 Feb 2022 15:59:51 +0100 Subject: [PATCH] Updated Azure configuration --- azure-pipelines.yml | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 28e572ce1..4de1fc951 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,14 +11,14 @@ trigger: jobs: - job: Build pool: - vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04' + vmImage: 'windows-2019' # other options: 'macOS-10.13', 'ubuntu-16.04' strategy: matrix: # Python27: # python.version: '2.7' - cp35-cp35m-win_amd64.whl: - python.version: '3.5' - python.architecture: 'x64' + # cp35-cp35m-win_amd64.whl: + # python.version: '3.5' + # python.architecture: 'x64' cp36-cp36m-win_amd64.whl: python.version: '3.6' python.architecture: 'x64' @@ -31,9 +31,12 @@ jobs: cp39-cp39-win_amd64.whl: python.version: '3.9' python.architecture: 'x64' - cp35-cp35m-win32.whl: - python.version: '3.5' - python.architecture: 'x86' + cp310-cp310-win_amd64.whl: + python.version: '3.10' + python.architecture: 'x64' + # cp35-cp35m-win32.whl: + # python.version: '3.5' + # python.architecture: 'x86' cp36-cp36m-win32.whl: python.version: '3.6' python.architecture: 'x86' @@ -46,6 +49,9 @@ jobs: cp39-cp39-win32.whl: python.version: '3.9' python.architecture: 'x86' + cp310-cp310-win32.whl: + python.version: '3.10' + python.architecture: 'x86' maxParallel: 6 steps: @@ -126,9 +132,14 @@ jobs: displayName: 'Combine Windows wheels and deploy to PyPI' dependsOn: Build pool: - vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04' + vmImage: 'windows-2019' # 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.10.x64' + inputs: + artifactName: 'wheel-3.10.x64' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.9.x64' inputs: @@ -150,9 +161,9 @@ jobs: artifactName: 'wheel-3.6.x64' downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 - displayName: 'Download Build Artifacts wheel-3.5.x64' + displayName: 'Download Build Artifacts wheel-3.10.x86' inputs: - artifactName: 'wheel-3.5.x64' + artifactName: 'wheel-3.10.x86' downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.9.x86' @@ -174,11 +185,6 @@ jobs: inputs: artifactName: 'wheel-3.6.x86' downloadPath: '$(System.DefaultWorkingDirectory)' - - task: DownloadBuildArtifacts@0 - displayName: 'Download Build Artifacts wheel-3.5.x86' - inputs: - artifactName: 'wheel-3.5.x86' - downloadPath: '$(System.DefaultWorkingDirectory)' - task: CopyFiles@2 condition: always() inputs: