Skip to content
This repository was archived by the owner on Feb 4, 2020. It is now read-only.

Commit 2cc04bb

Browse files
committed
Attempt to fix the failing 'continuous-integration/appveyor/pr' build job
the automated build was failing for the following command: ``` pip install -U pip setuptools wheel 'ERROR: To modify pip, please run the following command: c:\python35\python.exe -m pip install -U pip setuptools wheel You are using pip version 10.0.1, however version 18.0 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command ``` This is an attempt to fix it: an installation is performed earlier, as suggested in the error message.
1 parent 8d7be16 commit 2cc04bb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ install:
3232
# Check Python version
3333
- python --version
3434

35-
# Upgrade the Python build tools
36-
- pip install -U pip setuptools wheel
37-
38-
# Check pip version
35+
# Install Python build tools
3936
- python -m pip install --upgrade pip setuptools wheel
4037
- pip --version
4138

0 commit comments

Comments
 (0)