diff options
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml index 76e21dad..35c670a1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -131,11 +131,9 @@ install: # Check that we have the expected version and architecture for Python - "python -c \"import struct, sys; print('{}\\n{}-bit'.format(sys.version, struct.calcsize('P') * 8))\"" - # Upgrade to the latest version of pip to avoid it displaying warnings + # Upgrade to the right version of pip to avoid it displaying warnings # about it being out of date. - - "python -m pip install --disable-pip-version-check --upgrade pip" - # And upgrade virtualenv to get the latest pip inside .tox virtualenvs. - - "python -m pip install --disable-pip-version-check --upgrade virtualenv" + - "python -m pip install --disable-pip-version-check -r requirements/pip.pip" # Install requirements. - "%CMD_IN_ENV% pip install -r requirements/ci.pip" |