Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3bf2184

Browse files
committedNov 21, 2017
Merge branch 'update-to-cmake-3.10.0'
* update-to-cmake-3.10.0: Update to CMake v3.10.0
2 parents a6ed3f1 + 817e5ba commit 3bf2184

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.9/cmake-3.9.4.tar.gz")
5-
set(unix_source_sha256 "b5d86f12ae0072db520fdbdad67405f799eb728b610ed66043c20a92b4906ca1")
4+
set(unix_source_url "https://cmake.org/files/v3.10/cmake-3.10.0.tar.gz")
5+
set(unix_source_sha256 "b3345c17609ea0f039960ef470aa099de9942135990930a57c14575aae884987")
66

7-
set(windows_source_url "https://cmake.org/files/v3.9/cmake-3.9.4.zip")
8-
set(windows_source_sha256 "e19c36de1cabc242e78cbf93782b70904e192c6288db6a3d6606423ff944a674")
7+
set(windows_source_url "https://cmake.org/files/v3.10/cmake-3.10.0.zip")
8+
set(windows_source_sha256 "1094abe1050e4b1b813dd22c91b5e64fc1d583b728b714883154a565065823d7")
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.9/cmake-3.9.4-Linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "6d8573377fc7fca86ed1952b76f62880e2159a3de6508761dd0d619a8e96551b")
16+
set(linux64_binary_url "https://cmake.org/files/v3.10/cmake-3.10.0-Linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "6b5ea290042fac96023fd5387cd65cc69fdf4f48bad91177eb8697ba37e3deb3")
1818

19-
set(macosx_binary_url "https://cmake.org/files/v3.9/cmake-3.9.4-Darwin-x86_64.tar.gz")
20-
set(macosx_binary_sha256 "4d1356623e4e83c497d44b4601e24e39dd5c6a9594a2b042a9107319254fac0d")
19+
set(macosx_binary_url "https://cmake.org/files/v3.10/cmake-3.10.0-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "1610b6bbc0f22659455e878be9f4be4c6ba57643dabf35d8dabeeb05e7213039")
2121

22-
set(win32_binary_url "https://cmake.org/files/v3.9/cmake-3.9.4-win32-x86.zip")
23-
set(win32_binary_sha256 "8214df1ff51f9a6a1f0e27f9bd18f402b1749c5b645fbf6e401bcb00047171cd")
22+
set(win32_binary_url "https://cmake.org/files/v3.10/cmake-3.10.0-win32-x86.zip")
23+
set(win32_binary_sha256 "dce666e897f95a88d3eed6cddd1faa3f44179d519b33ca6065b385bbc7072419")
2424

25-
set(win64_binary_url "https://cmake.org/files/v3.9/cmake-3.9.4-win64-x64.zip")
26-
set(win64_binary_sha256 "63b74a0685b2dd1c5d76428fd915539db6353dd8804aed5683a533ee1a08196d")
25+
set(win64_binary_url "https://cmake.org/files/v3.10/cmake-3.10.0-win64-x64.zip")
26+
set(win64_binary_sha256 "b530586b92241bc10aaaaa391bc9b8f1ae830a676050f9f5e6003d2ce6085abc")

‎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.9.4 <https://cmake.org/cmake/help/v3.9/index.html>`_.
23+
The CMake python wheels provide `CMake 3.10.0 <https://cmake.org/cmake/help/v3.10/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 <https://www.itk.org>`_ and `VTK <http://www.vtk.org>`_.
1717

18-
The CMake python wheels provide `CMake 3.9.4 <https://cmake.org/cmake/help/v3.9/index.html>`_.
18+
The CMake python wheels provide `CMake 3.10.0 <https://cmake.org/cmake/help/v3.10/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.9.4"
16+
expected_version = "3.10.0"
1717

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

0 commit comments

Comments
 (0)
Please sign in to comment.