summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2016-01-30 13:20:51 +0100
committerAnthon van der Neut <anthon@mnt.org>2016-01-30 13:20:51 +0100
commitecbdd552cea283da08f9b2b072e913c0c235d7db (patch)
treebc120e54c8e5dc97ab8b5d5951df287e10a63363
parent6abdc921695783ae633e71592ff43224565397c3 (diff)
downloadruamel.yaml-ecbdd552cea283da08f9b2b072e913c0c235d7db.tar.gz
- remove hardcoded path
-rw-r--r--.appveyor.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yaml b/.appveyor.yaml
index 2b4e825..ba933d4 100644
--- a/.appveyor.yaml
+++ b/.appveyor.yaml
@@ -16,13 +16,13 @@ environment:
install:
- >
- /opt/python/2.6.6/bin/python -c "import sys, os;
+ %PYTHON%\python.exe -c "import sys, os;
os.system('%s -c \\"import urllib2; open(\\'c:\\\\get-pip.py\\', \\'w\\').
write(urllib2.urlopen(\\'https://bootstrap.pypa.io/get-pip.py\\').read())\\"'
% sys.executable)
if sys.version_info < (2, 7) else True"
- >
- /opt/python/2.6.6/bin/python -c "import sys, os;
+ %PYTHON%\python.exe -c "import sys, os;
os.system('%s c:\\get-pip.py' % sys.executable)
if sys.version_info < (2, 7) else True"
- '%PYTHON%\python.exe -m pip install wheel'