From 1a7acfcdc4585a6ee98e12cdccb8ff88d99c1aea Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 24 Dec 2022 21:54:16 +0100 Subject: [PATCH] Include Python 3.11 in Azure pipeline's upload --- azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad1445aa2..73643b265 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -126,6 +126,11 @@ jobs: 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.11.x64' + inputs: + artifactName: 'wheel-3.11.x64' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.10.x64' inputs: @@ -151,6 +156,11 @@ jobs: inputs: artifactName: 'wheel-3.6.x64' downloadPath: '$(System.DefaultWorkingDirectory)' + - task: DownloadBuildArtifacts@0 + displayName: 'Download Build Artifacts wheel-3.11.x86' + inputs: + artifactName: 'wheel-3.11.x86' + downloadPath: '$(System.DefaultWorkingDirectory)' - task: DownloadBuildArtifacts@0 displayName: 'Download Build Artifacts wheel-3.10.x86' inputs: