Skip to content

Commit cee2739

Browse files
committed
Update to CMake v3.7.1
1 parent a8d1a4a commit cee2739

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://cmake.org/files/v3.7/cmake-3.7.0.tar.gz")
5-
set(unix_source_sha256 "ed63e05c41aeb6c036e503114ab15847f29c312f9f21f5f1a7060a4b4ec2fb31")
4+
set(unix_source_url "https://cmake.org/files/v3.7/cmake-3.7.1.tar.gz")
5+
set(unix_source_sha256 "449a5bce64dbd4d5b9517ebd1a1248ed197add6ad27934478976fd5f1f9330e1")
66

7-
set(windows_source_url "https://cmake.org/files/v3.7/cmake-3.7.0.zip")
8-
set(windows_source_sha256 "e147c8f95b31b8cb0ef903b39ac21c9f07faf1c2131f7ec54a55e664d70224e7")
7+
set(windows_source_url "https://cmake.org/files/v3.7/cmake-3.7.1.zip")
8+
set(windows_source_sha256 "17f34341cc63a892679085f2cad3e3d1f172e0518ee7dde43716175033494dfa")
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://cmake.org/files/v3.7/cmake-3.7.0-Linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "e075f63e6a9104b1c3d11666ae9546bc8812f7e791a49c4ce11effc063141b2a")
16+
set(linux64_binary_url "https://cmake.org/files/v3.7/cmake-3.7.1-Linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "7b4b7a1d9f314f45722899c0521c261e4bfab4a6b532609e37fef391da6bade2")
1818

19-
set(macosx_binary_url "https://cmake.org/files/v3.7/cmake-3.7.0-Darwin-x86_64.tar.gz")
20-
set(macosx_binary_sha256 "38ea6955fb8c120eada1ff7985389b61ad5ca60a90a51025024638d92bfb43cf")
19+
set(macosx_binary_url "https://cmake.org/files/v3.7/cmake-3.7.1-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "1851d1448964893fdc5a8c05863326119f397a3790e0c84c40b83499c7960267")
2121

22-
set(win32_binary_url "https://cmake.org/files/v3.7/cmake-3.7.0-win32-x86.zip")
23-
set(win32_binary_sha256 "26dc1e0c4e9ba6021ed171463f7c99b241c1c8f8ada4ea652f031ff835c6b928")
22+
set(win32_binary_url "https://cmake.org/files/v3.7/cmake-3.7.1-win32-x86.zip")
23+
set(win32_binary_sha256 "d2ec53ba3e3a12f734ed7127704ff9a83361e7cc6f9a0f0b3e2b56d9868a76b9")
2424

25-
set(win64_binary_url "https://cmake.org/files/v3.7/cmake-3.7.0-win64-x64.zip")
26-
set(win64_binary_sha256 "11a2f8c4d52c5dbb6708a80f54d782fdfb2f5cd96c091ac51500c5607534e660")
25+
set(win64_binary_url "https://cmake.org/files/v3.7/cmake-3.7.1-win64-x64.zip")
26+
set(win64_binary_sha256 "659ecb8207e1266786188c7eaf45308458ba5f719c985970f6f55ec0b5a96746")

README.rst

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

23-
The CMake python wheels provide `CMake 3.7.0 <https://cmake.org/cmake/help/v3.7/index.html>`_.
23+
The CMake python wheels provide `CMake 3.7.1 <https://cmake.org/cmake/help/v3.7/index.html>`_.
2424

2525
This project is maintained by Jean-Christophe Fillion-Robin from Kitware Inc.
2626
It is covered by the `Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_.

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 and VTK.
1717

18-
The CMake python wheels provide `CMake 3.7.0 <https://cmake.org/cmake/help/v3.6/index.html>`_.
18+
The CMake python wheels provide `CMake 3.7.1 <https://cmake.org/cmake/help/v3.7/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

tests/test_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def test_command_line(virtualenv, tmpdir):
1313

1414
virtualenv.run("pip install %s" % wheels[0])
1515

16-
expected_version = "3.7.0"
16+
expected_version = "3.7.1"
1717

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

0 commit comments

Comments
 (0)