From 9191857b5ff6a945f0ffb7cdc3dfbe719fd3cfa2 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 20 Aug 2019 19:11:14 -0300 Subject: [PATCH] Do not update pip on Azure Avoid upgrading pip because it is giving this error on py34: Requirement already up-to-date: pip in c:\hostedtoolcache\windows\python\3.4.4\x64\lib\site-packages (19.2.1) ERROR: Package 'pip' requires a different Python: 3.4.4 not in '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*' [error]Cmd.exe exited with code '1'. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8e50486de..d33a9e09b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -91,7 +91,7 @@ jobs: condition: eq(variables['python.needs_vc'], True) displayName: 'Install VC for py27' - - script: python -m pip install --upgrade pip && python -m pip install tox + - script: python -m pip install tox displayName: 'Install tox' - script: |