From 49be92e047a96a7fc2c7c23a269292e560701299 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 3 Jul 2018 11:06:31 +0200 Subject: [PATCH] Use 64-bit Python on AppVeyor QtWebEngine isn't available in the 32-bit build. --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d336f20cc..70e51fa42 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -5,7 +5,7 @@ cache: build: off environment: PYTHONUNBUFFERED: 1 - PYTHON: C:\Python36\python.exe + PYTHON: C:\Python36-x64\python.exe matrix: - TESTENV: py36-pyqt511 - TESTENV: pylint @@ -13,7 +13,7 @@ environment: install: - '%PYTHON% -m pip install -U pip' - '%PYTHON% -m pip install -r misc\requirements\requirements-tox.txt' - - 'set PATH=%PATH%;C:\Python36' + - 'set PATH=%PATH%;C:\Python36-x64' test_script: - '%PYTHON% -m tox -e %TESTENV%'