aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-21 19:31:52 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-21 19:31:52 -0800
commit4dc8f546f6a9aa3b182de33907c4c0744ca61c83 (patch)
treec637b817119c7e75da223e64bda56df74a96e59f /scripts
parent3ae8349d1be989c82ec7577537429de5a2993c0c (diff)
downloadvcpkg-4dc8f546f6a9aa3b182de33907c4c0744ca61c83.tar.gz
vcpkg-4dc8f546f6a9aa3b182de33907c4c0744ca61c83.zip
[find/acquire python] Use 32-bit versions and bump to latest patch version
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/vcpkg_find_acquire_program.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/cmake/vcpkg_find_acquire_program.cmake b/scripts/cmake/vcpkg_find_acquire_program.cmake
index 7e4f1ba9c..da909c619 100644
--- a/scripts/cmake/vcpkg_find_acquire_program.cmake
+++ b/scripts/cmake/vcpkg_find_acquire_program.cmake
@@ -32,9 +32,9 @@ function(vcpkg_find_acquire_program VAR)
elseif(VAR MATCHES "PYTHON3")
set(PROGNAME python)
set(PATHS ${DOWNLOADS}/tools/python)
- set(URL "https://www.python.org/ftp/python/3.5.2/python-3.5.2-embed-amd64.zip")
- set(ARCHIVE "python-3.5.2-embed-amd64.zip")
- set(HASH 48bdcb6f94c993acad6782ee33ad4a07a0ea3b9b1bfcdeadf446d459a9224336837e2e7b518d54d8d99c5c3f4e9f8877ea1789cae513fa2eda2a3cad9e4dfd8f)
+ set(URL "https://www.python.org/ftp/python/3.5.3/python-3.5.3-embed-win32.zip")
+ set(ARCHIVE "python-3.5.3-embed-win32.zip")
+ set(HASH c8cfdc09d052dc27e4380e8e4bf0d32a4c0def7e03896c1fa6cabc26dde78bb74dbb04e3673cc36e3e307d65a1ef284d69174f0cc80008c83bc6178f192ac5cf)
elseif(VAR MATCHES "PYTHON2")
find_program(PYTHON2 NAMES python2 python PATHS C:/python27 ENV PYTHON)
if(NOT PYTHON2 MATCHES "NOTFOUND")
@@ -53,7 +53,7 @@ function(vcpkg_find_acquire_program VAR)
if(PYTHON2 MATCHES "NOTFOUND")
message(FATAL_ERROR "Python 2.7 was not found in the path or by searching inside C:\\Python27.\n"
"There is no portable redistributable for Python 2.7, so you will need to install the MSI located at:\n"
- " https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi\n"
+ " https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi\n"
)
endif()
elseif(VAR MATCHES "JOM")