diff options
author | Anthony Sottile <asottile@umich.edu> | 2020-03-19 11:03:56 -0700 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-03-24 10:15:05 +0100 |
commit | 63bf9dcf39a7dbd86601ef6c6a16eef4768f1e9a (patch) | |
tree | 96c3c0d99a00607965cf4d785fd81952f9889906 /appveyor.yml | |
parent | 1906ba0b4158d47ccce15473af76566266ea61e0 (diff) | |
download | pylint-git-63bf9dcf39a7dbd86601ef6c6a16eef4768f1e9a.tar.gz |
fix appveyor to not use python2
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 7db2120f4..c376d0b11 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,7 +18,7 @@ init: - ps: ls C:\Python* - ps: mkdir C:\tmp install: - - 'powershell ./appveyor/install.ps1' + - 'SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%' - 'python -m pip install -U setuptools pip tox wheel virtualenv' - 'python -m pip --version' - 'python -m tox --version' |