From 977bcda54dcd96e057764c2caa7950dce1f00bcc Mon Sep 17 00:00:00 2001 From: Artem Dinaburg Date: Fri, 22 May 2020 13:38:17 -0400 Subject: [PATCH] Bump CMake version to 3.17.2 --- pkgman/installers/unix.py | 2 +- pkgman/installers/windows.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgman/installers/unix.py b/pkgman/installers/unix.py index f26f6182..94e771e8 100644 --- a/pkgman/installers/unix.py +++ b/pkgman/installers/unix.py @@ -99,7 +99,7 @@ def unix_installer_cmake(properties): cmake_os = "win64" cmake_arch = "x64" - cmake_version = "3.16.4" + cmake_version = "3.17.2" url = "https://github.com/Kitware/CMake/releases/download/v" + cmake_version + "/cmake-" + cmake_version + ".tar.gz" source_tarball_path = download_file(properties, url, "sources") diff --git a/pkgman/installers/windows.py b/pkgman/installers/windows.py index 4dcc3dcc..aff928dd 100644 --- a/pkgman/installers/windows.py +++ b/pkgman/installers/windows.py @@ -23,7 +23,7 @@ def windows_installer_cmake(properties): if debug: print(" ! Debug build not supported on Windows") - version = "3.10.2" + version = "3.17.2" version_components = version.split(".") short_version = "v" + version_components[0] + "." + version_components[1]