From 9bf02315aac82d084fd99f902a3401085db684e0 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Thu, 16 Jun 2022 12:10:34 +0200 Subject: [PATCH] appveyor.yml: use different PYTHON path for 32 and 64 bit builds --- appveyor.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cbac859..8dc4515 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,10 +14,9 @@ environment: # - PYTHON: "C:\\Python35-x64" # - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" - -platform: - - x86 - - x64 + platform: x64 + - PYTHON: "C:\\Python37" + platform: x86 install: - "%PYTHON%\\python.exe -m pip install wheel PyMuPDF pytest pyinstaller"