From: Oleg Broytman Date: Sun, 1 Apr 2018 00:47:01 +0000 (+0300) Subject: CI(appveyor.yml): Upgrade `pip` using `python -m pip` X-Git-Tag: 0.7.0~11 X-Git-Url: https://git.phdru.name/?p=ppu.git;a=commitdiff_plain;h=e90e02d230c98606a3f0b219eb8d5cf66823c11d CI(appveyor.yml): Upgrade `pip` using `python -m pip` Avoid `WindowsError: [Error 5] Access is denied`. --- 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