summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 6ff592af..8b9e1b61 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -99,16 +99,16 @@ install:
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- - "pip install --disable-pip-version-check --user --upgrade pip"
+ - "python -m pip install --disable-pip-version-check --upgrade pip"
# And upgrade virtualenv to get the latest pip inside .tox virtualenvs.
- - "pip install --disable-pip-version-check --user --upgrade virtualenv"
+ - "python -m pip install --disable-pip-version-check --upgrade virtualenv"
# Install requirements.
- "%CMD_IN_ENV% pip install -r requirements/ci.pip"
# Make a python3.4.bat file in the current directory so that tox will find it
# and python3.4 will mean what we want it to.
- - "python -c \"import os; open('python{0}.{1}.bat'.format(*os.environ['TOXENV'][2:]), 'w').write('@{0}\\\\python \\x25*\\n'.format(os.environ['PYTHON']))\""
+ - "python -c \"import os; open('python{}.{}.bat'.format(*os.environ['TOXENV'][2:]), 'w').write('@{}\\\\python \\x25*\\n'.format(os.environ['PYTHON']))\""
build_script:
# If not a metacov job, then build wheels and .exe installers.