diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4078af36951..12216a7891c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,9 +40,9 @@ jobs: vmImage: 'ubuntu-20.04' steps: - task: UsePythonVersion@0 - displayName: 'Use Python 3.6' + displayName: 'Use Python 3.10' inputs: - versionSpec: 3.6 + versionSpec: 3.10 - bash: | set -ev @@ -85,9 +85,9 @@ jobs: vmImage: 'ubuntu-20.04' steps: - task: UsePythonVersion@0 - displayName: 'Use Python 3.7' + displayName: 'Use Python 3.10' inputs: - versionSpec: 3.7 + versionSpec: 3.10 - bash: | #!/usr/bin/env bash set -ev @@ -106,6 +106,10 @@ jobs: python.version: '3.6' Python38: python.version: '3.8' + Python39: + python.version: '3.9' + Python310: + python.version: '3.10' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' @@ -126,9 +130,9 @@ jobs: vmImage: 'ubuntu-20.04' steps: - task: UsePythonVersion@0 - displayName: 'Use Python 3.6' + displayName: 'Use Python 3.10' inputs: - versionSpec: 3.6 + versionSpec: 3.10 - bash: | set -ev @@ -162,9 +166,9 @@ jobs: vmImage: 'ubuntu-20.04' steps: - task: UsePythonVersion@0 - displayName: 'Use Python 3.7' + displayName: 'Use Python 3.10' inputs: - versionSpec: 3.7 + versionSpec: 3.10 - bash: pip install wheel==0.30.0 displayName: 'Install wheel==0.30.0' - task: Bash@3