Skip to content

Commit

Permalink
Modernize appveyor.yml
Browse files Browse the repository at this point in the history
1. Make sure the Python I want to use exists
2. Make sure we don't use outdated virtualenv/pip/setuptools
  • Loading branch information
mgedmin committed Oct 15, 2019
1 parent 2bd8dd4 commit 5053d64
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -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
Expand Down

0 comments on commit 5053d64

Please sign in to comment.