From: Bob Halley Date: Wed, 28 Oct 2020 15:28:29 +0000 (-0700) Subject: another azure fix attempt X-Git-Tag: v2.1.0rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a4a480be6a16566c7ae8f4faaa1b76e5bd402b2;p=thirdparty%2Fdnspython.git another azure fix attempt --- 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'