From c6368be701a99f8315656f925236dbcec5b9b9c2 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 10 Jun 2025 21:48:53 +0100 Subject: [PATCH] Move to the `OS-latest` image tags on Azure Pipelines (#2461) --- azure-pipelines.yml | 6 +++--- examples/azure-pipelines-minimal.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ddc9f18f..b19c516e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ pr: jobs: - job: linux_311 timeoutInMinutes: 180 - pool: {vmImage: 'Ubuntu-22.04'} + pool: {vmImage: 'ubuntu-latest'} steps: - task: UsePythonVersion@0 inputs: @@ -25,7 +25,7 @@ jobs: python ./bin/run_tests.py - job: macos_311 - pool: {vmImage: 'macOS-13'} + pool: {vmImage: 'macOS-latest'} timeoutInMinutes: 120 steps: - task: UsePythonVersion@0 @@ -43,7 +43,7 @@ jobs: python ./bin/run_tests.py - job: windows_311 - pool: {vmImage: 'windows-2019'} + pool: {vmImage: 'windows-latest'} timeoutInMinutes: 180 steps: - task: UsePythonVersion@0 diff --git a/examples/azure-pipelines-minimal.yml b/examples/azure-pipelines-minimal.yml index 707b857e..00384297 100644 --- a/examples/azure-pipelines-minimal.yml +++ b/examples/azure-pipelines-minimal.yml @@ -1,6 +1,6 @@ jobs: - job: linux - pool: {vmImage: 'Ubuntu-20.04'} + pool: {vmImage: 'ubuntu-latest'} steps: - task: UsePythonVersion@0 - bash: | @@ -14,7 +14,7 @@ jobs: inputs: {pathtoPublish: 'wheelhouse'} - job: macos - pool: {vmImage: 'macOS-13'} + pool: {vmImage: 'macOS-latest'} steps: - task: UsePythonVersion@0 - bash: | @@ -28,7 +28,7 @@ jobs: inputs: {pathtoPublish: wheelhouse} - job: windows - pool: {vmImage: 'windows-2019'} + pool: {vmImage: 'windows-latest'} steps: - task: UsePythonVersion@0 - bash: |