Skip to content

Commit 6cdbfef

Browse files
authored
Merge pull request scikit-build#94 from henryiii/update-to-cmake-3.16.3
Update to CMake 3.16.3
2 parents 35f6c85 + 6c6c150 commit 6cdbfef

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-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.16.0/cmake-3.16.0.tar.gz")
5-
set(unix_source_sha256 "6da56556c63cab6e9a3e1656e8763ed4a841ac9859fefb63cbe79472e67e8c5f")
4+
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3.tar.gz")
5+
set(unix_source_sha256 "e54f16df9b53dac30fd626415833a6e75b0e47915393843da1825b096ee60668")
66

7-
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0.zip")
8-
set(windows_source_sha256 "64ae0f6c4e7563cddaa278501cb5019f994d73fc6f1432eb57456beafa093fc5")
7+
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3.zip")
8+
set(windows_source_sha256 "f66fd5a506df762b7f0de4c8e5c5b1f05b01a0d3831c1303911f273cd16dcc12")
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.16.0/cmake-3.16.0-Linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "85f55f13c922c853049edcf37c828b02b9b2fc00729d0cbb56cf20181a39340b")
16+
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3-Linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "3e15dadfec8d54eda39c2f266fc1e571c1b88bf32f9d221c8a039b07234206fa")
1818

19-
set(macosx_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0-Darwin-x86_64.tar.gz")
20-
set(macosx_binary_sha256 "aa5221fb0be10088a47314546b7be5767056cb10fc2cbf64d18a374f25b226ce")
19+
set(macosx_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "655d6ed41a1c276676ca6a1ec381c179d394420c489f2d39b3cf2ef26bfae799")
2121

22-
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0-win32-x86.zip")
23-
set(win32_binary_sha256 "710e96a01a133bc8a077fb68ce4b4b960f61d9ec269fb4d2e0c7ce2950303643")
22+
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3-win32-x86.zip")
23+
set(win32_binary_sha256 "6c6ca229b2c7b503aed90ac01fa75b9165e2cdbf18b5e0629658c13c658e3647")
2424

25-
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.0/cmake-3.16.0-win64-x64.zip")
26-
set(win64_binary_sha256 "2311572c96c3902cff0c42f807c08d07abd44dc981b80bbafa916e1c1be5072b")
25+
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3-win64-x64.zip")
26+
set(win64_binary_sha256 "4b1370b3252acda0850d26c75e9bc6b8e019daaa7978a19f5d8dc008450d3548")

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.16.0 <https://cmake.org/cmake/help/v3.16/index.html>`_.
14+
The CMake python wheels provide `CMake 3.16.3 <https://cmake.org/cmake/help/v3.16/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.16.0 <https://cmake.org/cmake/help/v3.16/index.html>`_.
18+
The CMake python wheels provide `CMake 3.16.3 <https://cmake.org/cmake/help/v3.16/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

tests/test_distribution.py

Lines changed: 2 additions & 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.16.0"
12+
expected_version = "3.16.3"
1313

1414
for executable_name in ["cmake", "cpack", "ctest"]:
1515
output = virtualenv.run(
@@ -32,6 +32,7 @@ def test_wheel(virtualenv, tmpdir):
3232
if not wheels:
3333
pytest.skip("no wheel available")
3434
assert len(wheels) == 1
35+
print(wheels)
3536

3637
virtualenv.run("pip install %s" % wheels[0])
3738

0 commit comments

Comments
 (0)