diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-06-24 13:49:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-06-24 13:49:58 -0400 |
commit | a0f99e8ab4161dfb23c08defdc581e8e77f9b7ff (patch) | |
tree | 841c415541986c4807c5642372db8309589f837c | |
parent | 01d8d1fcb554896f7004e03556231acaee4c2f4b (diff) | |
download | python-coveragepy-git-a0f99e8ab4161dfb23c08defdc581e8e77f9b7ff.tar.gz |
Try Appveyor without --user
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index cf3f6882..8b9e1b61 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -99,9 +99,9 @@ install: # Upgrade to the latest version of pip to avoid it displaying warnings # about it being out of date. - - "python -m pip install --disable-pip-version-check --user pip==10.0.1" + - "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 --user --upgrade virtualenv" + - "python -m pip install --disable-pip-version-check --upgrade virtualenv" # Install requirements. - "%CMD_IN_ENV% pip install -r requirements/ci.pip" |