From 64f34d97b17d93942eff27d4c20f4fbed99fdd42 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 15 Nov 2019 01:50:55 +0100 Subject: [PATCH] Use newer pip to try fix wheel selection on 3.8 Windows --- azure-pipelines.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 512c6414c..0930d7524 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -81,10 +81,8 @@ jobs: versionSpec: '$(python.version)' architecture: 'x64' - # Downgrading pip is necessary to prevent a wheel version incompatiblity. - # Might be fixed in the future or some other way, so investigate again. - script: | - python -m pip install -U pip==18.1 setuptools + python -m pip install -U pip setuptools pip install -r requirements.txt displayName: 'Install dependencies'