From 4695989f6646f4bd241324b4d838b2aee7e42f2d Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Tue, 22 Oct 2019 19:03:35 +0300 Subject: [PATCH] Install Python 3.8 on Appveyor --- appveyor.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 9feab5f..29b705e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,12 +8,17 @@ environment: - PYTHON: "C:\\Python35" - PYTHON: "C:\\Python36" - PYTHON: "C:\\Python37" -## - PYTHON: "C:\\Python38" + - PYTHON: "C:\\Python38" init: - "echo %PYTHON%" install: + - ps: | + if (-not (Test-Path $env:PYTHON)) { + curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1 + .\install_python.ps1 + } - ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" } - "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - python --version