From e3439a9af87ec7705d13b0304852d82fc7273635 Mon Sep 17 00:00:00 2001 From: Babil Golam Sarwar Date: Tue, 29 May 2018 16:50:33 +1000 Subject: [PATCH] Enforce Pip installs under Python 3.6 --- .appveyor.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 8c65abc6..ddd7e250 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -63,13 +63,7 @@ install: - ps: Get-Location - bash -e -l -c "cd $APPVEYOR_BUILD_FOLDER && ls -alh" - # Install Python modules - - ps: python -m pip install --upgrade pip - # - ps: python -m pip install --upgrade packager - - ps: python -m pip install --upgrade pyinstaller - # Install NPM modules - # - bash -e -l -c "cd /C/Tridactyl && npm install -g windows-build-tools" - bash -e -l -c "cd $APPVEYOR_BUILD_FOLDER && npm install" build_script: @@ -78,6 +72,10 @@ build_script: - ps: $env:PATH = "C:\Python36-x64;$env:PATH" - ps: Copy-Item -Path "C:\Python36-x64\Python.exe" -Destination "C:\Python36-x64\Python3.exe" + # Install Python modules under Python 3.6 + - ps: python -m pip install --upgrade pip + - ps: python -m pip install --upgrade pyinstaller + # Change to build directory and verify CWD - ps: Set-Location -Path $env:APPVEYOR_BUILD_FOLDER - ps: Write-Host "[+] Current working directory is ..."