From 5f784d71d3a23a850a68fd811e9c31cee12a760e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 13 Sep 2015 11:01:01 -0400 Subject: [PATCH 1/3] Python 3.5 final is available. --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index ba85036..a368868 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -57,12 +57,12 @@ environment: PYTHON_VERSION: "2.6.6" PYTHON_ARCH: "64" - - PYTHON: "C:\\Python35rc4" - PYTHON_VERSION: "3.5.0rc4" + - PYTHON: "C:\\Python35" + PYTHON_VERSION: "3.5.0" PYTHON_ARCH: "32" - - PYTHON: "C:\\Python35rc4-x64" - PYTHON_VERSION: "3.5.0rc4" + - PYTHON: "C:\\Python35-x64" + PYTHON_VERSION: "3.5.0" PYTHON_ARCH: "64" # Major and minor releases (i.e x.0.0 and x.y.0) prior to 3.3.0 use From 763661114b1a6ab26fcdb97b4d0c3729838c586a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 14 Sep 2015 12:06:37 -0400 Subject: [PATCH 2/3] Run get-pip.py in a way that shows its output. --- appveyor/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor/install.ps1 b/appveyor/install.ps1 index 25df2fd..160ba55 100644 --- a/appveyor/install.ps1 +++ b/appveyor/install.ps1 @@ -162,7 +162,7 @@ function InstallPip ($python_home) { $webclient = New-Object System.Net.WebClient $webclient.DownloadFile($GET_PIP_URL, $GET_PIP_PATH) Write-Host "Executing:" $python_path $GET_PIP_PATH - Start-Process -FilePath "$python_path" -ArgumentList "$GET_PIP_PATH" -Wait -Passthru + & $python_path $GET_PIP_PATH } else { Write-Host "pip already installed." } From 09a1c8672e5015a74d8f69d07add6ee803c176ec Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 17 Sep 2015 19:50:58 -0400 Subject: [PATCH 3/3] Fix for bug in wdk for building Python 3.5 --- appveyor/run_with_env.cmd | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appveyor/run_with_env.cmd b/appveyor/run_with_env.cmd index 61ad6d3..5da547c 100644 --- a/appveyor/run_with_env.cmd +++ b/appveyor/run_with_env.cmd @@ -33,6 +33,7 @@ SET COMMAND_TO_RUN=%* SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows +SET WIN_WDK=c:\Program Files (x86)\Windows Kits\10\Include\wdf :: Extract the major and minor versions, and allow for the minor version to be :: more than 9. This requires the version number to have two dots in it. @@ -55,6 +56,10 @@ IF %MAJOR_PYTHON_VERSION% == 2 ( SET SET_SDK_64=Y ) ELSE ( SET SET_SDK_64=N + IF EXIST "%WIN_WDK%" ( + :: See: https://connect.microsoft.com/VisualStudio/feedback/details/1610302/ + REN "%WIN_WDK%" 0wdf + ) ) ) ELSE ( ECHO Unsupported Python version: "%MAJOR_PYTHON_VERSION%"