From e90e02d230c98606a3f0b219eb8d5cf66823c11d Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 1 Apr 2018 03:47:01 +0300 Subject: [PATCH] CI(appveyor.yml): Upgrade `pip` using `python -m pip` Avoid `WindowsError: [Error 5] Access is denied`. --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 4b8ec35..a2f112b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -49,8 +49,9 @@ install: - "SET TOXPYTHON=%PYTHON_HOME%\\python.exe" - "python --version" - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" + - "python -m pip install --upgrade pip setuptools" + - "pip install --upgrade tox" - "pip --version" - - "pip install --upgrade pip setuptools tox" # No build step - we don't have C extensions build: false -- 2.39.2