From 7a4a480be6a16566c7ae8f4faaa1b76e5bd402b2 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 28 Oct 2020 08:28:29 -0700 Subject: [PATCH] another azure fix attempt --- azure-pipelines.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3c805449..c549bf14 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,14 +12,18 @@ jobs: vmImage: 'vs2017-win2016' strategy: matrix: - Python37: - python.version: '3.7' + Python38: + python.version: '3.8' steps: - task: UsePythonVersion@0 inputs: versionSpec: '$(python.version)' displayName: 'Use Python $(python.version)' + - script: | + pip install --upgrade pip wheel + displayName: 'Install pip and wheel' + - script: | pip install -e .[dnssec,idna,doh,trio,curio] displayName: 'Install python dependencies' -- 2.47.3