Skip to content

Commit a178e56

Browse files
authored
Merge pull request #107 from scikit-build/update-to-cmake-3.17.3
Update to CMake 3.17.3
2 parents 56fc879 + c4ea403 commit a178e56

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

CMakeUrls.cmake

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11

22
#-----------------------------------------------------------------------------
33
# CMake sources
4-
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2.tar.gz")
5-
set(unix_source_sha256 "fc77324c4f820a09052a7785549b8035ff8d3461ded5bbd80d252ae7d1cd3aa5")
4+
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3.tar.gz")
5+
set(unix_source_sha256 "0bd60d512275dc9f6ef2a2865426a184642ceb3761794e6b65bff233b91d8c40")
66

7-
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2.zip")
8-
set(windows_source_sha256 "4b9e3a99573a3cbcd27d328a1b1ff9c7b35cf072dee78150d49844ff1ab6dbc1")
7+
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3.zip")
8+
set(windows_source_sha256 "e34320e1c896b8ee9fc627a20f5271db7c08691f769874d294bf9f54aa79b352")
99

1010
#-----------------------------------------------------------------------------
1111
# CMake binaries
1212

1313
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
1414
set(linux32_binary_sha256 "NA")
1515

16-
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2-Linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "dc57f3cc448ca67fc8776b4ad4c22b087b9c6a8e459938b9622b8c7f4ef6b21e")
16+
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3-Linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "da8093956f0b4ae30293c9db498da9bdeaeea4e7a2b1f2d1637ddda064d06dd0")
1818

19-
set(macosx_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2-Darwin-x86_64.tar.gz")
20-
set(macosx_binary_sha256 "139500e20b080444fcafe57f24f57248c691c5187cce6695bee2b9aad6792c7d")
19+
set(macosx_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "2ad1413510681b041ec305923c6ccbc64b0fed6608df82f5543577f7b4b88305")
2121

22-
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2-win32-x86.zip")
23-
set(win32_binary_sha256 "66a68a1032ad1853bcff01778ae190cd461d174d6a689e1c646e3e9886f01e0a")
22+
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3-win32-x86.zip")
23+
set(win32_binary_sha256 "1a7d82fe79b295461e8fe91e6d3d97a43c01cf954426c8b10a108575c1aa4ee1")
2424

25-
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2-win64-x64.zip")
26-
set(win64_binary_sha256 "cf82b1eb20b6fbe583487656fcd496490ffccdfbcbba0f26e19f1c9c63b0b041")
25+
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.17.3/cmake-3.17.3-win64-x64.zip")
26+
set(win64_binary_sha256 "8a02de221aa96c236a947b28ca1bd6327b9bb82fa74b91e5caa49ffd6a642ae2")

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The suite of CMake tools were created by Kitware in response to the need
1111
for a powerful, cross-platform build environment for open-source projects
1212
such as ITK and VTK.
1313

14-
The CMake python wheels provide `CMake 3.17.2 <https://cmake.org/cmake/help/v3.17/index.html>`_.
14+
The CMake python wheels provide `CMake 3.17.3 <https://cmake.org/cmake/help/v3.17/index.html>`_.
1515

1616
Latest Release
1717
--------------

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The suite of CMake tools were created by Kitware in response to the need
1515
for a powerful, cross-platform build environment for open-source projects
1616
such as `ITK <https://www.itk.org>`_ and `VTK <http://www.vtk.org>`_.
1717

18-
The CMake python wheels provide `CMake 3.17.2 <https://cmake.org/cmake/help/v3.17/index.html>`_.
18+
The CMake python wheels provide `CMake 3.17.3 <https://cmake.org/cmake/help/v3.17/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

tests/test_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _check_cmake_install(virtualenv, tmpdir):
12-
expected_version = "3.17.2"
12+
expected_version = "3.17.3"
1313

1414
for executable_name in ["cmake", "cpack", "ctest"]:
1515
output = virtualenv.run(

0 commit comments

Comments
 (0)