From e8ebfa9dfb5d2f85d7975211e6aac1d932d837e4 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 15 Oct 2019 12:38:07 +0300 Subject: [PATCH] Modernize appveyor.yml 1. Make sure the Python I want to use exists 2. Make sure we don't use outdated virtualenv/pip/setuptools --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 4de6670..dc08606 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,6 +14,7 @@ init: - "echo %PYTHON%" install: + - ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" } - "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - python --version - pip install -U virtualenv # upgrade pip in tox's virtualenvs