From d923879e897f63f70ed01bd70aa0b8df7d8b764e Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 21 Apr 2018 16:34:55 -0400 Subject: [PATCH] appveyor: Upgrade pip with 'python -m pip' This reportedly works around https://github.com/pypa/pip/issues/5240 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 620c338b9..72f9d881d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -48,9 +48,9 @@ install: # Upgrade to the latest version of pip to avoid it displaying warnings # about it being out of date. - - "pip install --disable-pip-version-check --user --upgrade pip" + - "python -m pip install --disable-pip-version-check --user --upgrade pip" - - "pip install tox wheel" + - "python -m pip install tox wheel" build: false # Not a C# project, build stuff at the test step instead. -- 2.47.2