Skip to content

Commit

Permalink
AppVeyor: Use the new location for the get-pip.py script
Browse files Browse the repository at this point in the history
Since the existing location fails with:
```
Running Install scripts
(new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
%PYTHON%/python.exe C:/get-pip.py
You're using an outdated location for the get-pip.py script, please use the one available from https://bootstrap.pypa.io/get-pip.py
Command exited with code 1
```
  • Loading branch information
Ed Morley committed Aug 3, 2016
1 parent 7e1ecd2 commit 7b45b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -9,7 +9,7 @@ init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe install -e ."
test_script:
Expand Down

0 comments on commit 7b45b95

Please sign in to comment.