From c4b38852f66163f03249dec37c6ae619126c54dc Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Sun, 1 Oct 2023 10:14:56 -0700 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 652f241..4f0ad02 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -32,35 +32,44 @@ jobs: strategy: matrix: + Linux-py3.11: + imageName: 'ubuntu-latest' + pythonVersion: '3.11' + Linux-py3.10: + imageName: 'ubuntu-latest' + pythonVersion: '3.10' Linux-py3.9: - imageName: 'ubuntu-20.04' + imageName: 'ubuntu-latest' pythonVersion: '3.9' Linux-py3.8: - imageName: 'ubuntu-20.04' + imageName: 'ubuntu-latest' pythonVersion: '3.8' - Linux-py3.7: - imageName: 'ubuntu-20.04' - pythonVersion: '3.7' + macOS-py3.11: + imageName: 'macos-latest' + pythonVersion: '3.11' + macOS-py3.10: + imageName: 'macos-latest' + pythonVersion: '3.10' macOS-py3.9: - imageName: 'macos-10.15' + imageName: 'macos-latest' pythonVersion: '3.9' macOS-py3.8: - imageName: 'macos-10.15' + imageName: 'macos-latest' pythonVersion: '3.8' - macOS-py3.7: - imageName: 'macos-10.15' - pythonVersion: '3.7' + Windows-py3.11: + imageName: 'windows-latest' + pythonVersion: '3.11' + Windows-py3.10: + imageName: 'windows-latest' + pythonVersion: '3.10' Windows-py3.9: - imageName: 'windows-2019' + imageName: 'windows-latest' pythonVersion: '3.9' Windows-py3.8: - imageName: 'windows-2019' + imageName: 'windows-latest' pythonVersion: '3.8' - Windows-py3.7: - imageName: 'windows-2019' - pythonVersion: '3.7' pool: vmImage: $(imageName)