From 0cb8e0ea52d3fda1b9ff31884ee277a4b902be52 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 1 Dec 2019 20:30:24 +0000 Subject: [PATCH] Specify minor version of Python on AppVeyor To fix sphinx-build being installed to a different path in different versions of Python. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index e74e7b82..509a85e5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -30,7 +30,7 @@ install: if (!([string]$version).endswith('0.9.0')) { $env:INSTALL_CBINDGEN=1 } - IF "%INSTALL_CBINDGEN%" == "1" cargo install cbindgen --version 0.9.0 --force - nuget install doxygen -Version 1.8.14 - - py -3 -m pip install -r docs/requirements.txt + - py -3.7 -m pip install -r docs/requirements.txt - ps: (New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/Ortham/ci-scripts/2.1.3/delete_old_bintray_versions.py', "$env:APPVEYOR_BUILD_FOLDER\delete_old_bintray_versions.py") - ps: if ($env:PLATFORM -eq "Win32") { $env:ADDRESS_MODEL = '32' } else { $env:ADDRESS_MODEL = '64' }