diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2019-05-20 08:53:39 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-05-20 08:53:39 +0200 |
commit | 36f206b5856d384c1531a41a7c73099859b99e71 (patch) | |
tree | 38adeb57eccb9945686ab2ad6926303d5f8a023a /appveyor.yml | |
parent | fc569a61d79a13fb237e472c5e95ee45bbac6707 (diff) | |
download | pylint-git-36f206b5856d384c1531a41a7c73099859b99e71.tar.gz |
tox stopped installing the latest pip resulting in various errors accross AppVeyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 5545fa2b2..06332eb0f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,8 +19,7 @@ init: - ps: mkdir C:\tmp install: - 'powershell ./appveyor/install.ps1' - - "python -m pip install tox" - - 'python -m pip install wheel' + - 'python -m pip install -U setuptools pip tox wheel virtualenv' - 'python -m pip --version' - 'python -m tox --version' |