Skip to content

Commit 758e4d2

Browse files
authored
Merge pull request #27 from fbudin69500/Update_to_cmake_3.9.0
Update to CMake v3.9.0
2 parents d741839 + 8f5c0df commit 758e4d2

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

CMakeUrls.cmake

+12-12
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.8/cmake-3.8.1.tar.gz")
5-
set(unix_source_sha256 "ce5d9161396e06501b00e52933783150a87c33080d4bdcef461b5b7fd24ac228")
4+
set(unix_source_url "https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz")
5+
set(unix_source_sha256 "167701525183dbb722b9ffe69fb525aa2b81798cf12f5ce1c020c93394dfae0f")
66

7-
set(windows_source_url "https://cmake.org/files/v3.8/cmake-3.8.1.zip")
8-
set(windows_source_sha256 "302414a4499fe9a35c358b4034168626913a6da80ea0646a5adf2b3d109c54f1")
7+
set(windows_source_url "https://cmake.org/files/v3.9/cmake-3.9.0.zip")
8+
set(windows_source_sha256 "4bb61705fb183ed3cfeba5548930a2f09737e3969b01565af4a0768463c94966")
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.8/cmake-3.8.1-Linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "10ca0e25b7159a03da0c1ec627e686562dc2a40aad5985fd2088eb684b08e491")
16+
set(linux64_binary_url "https://cmake.org/files/v3.9/cmake-3.9.0-Linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "e714ddd55ab9be7ec5e4d30ca1ceee5e23406d7d3bf14457a67180cf54d9834a")
1818

19-
set(macosx_binary_url "https://cmake.org/files/v3.8/cmake-3.8.1-Darwin-x86_64.tar.gz")
20-
set(macosx_binary_sha256 "cf8cf16eb1281127006507e69bbcfabec2ccbbc3dfb95888c39d578d037569f1")
19+
set(macosx_binary_url "https://cmake.org/files/v3.9/cmake-3.9.0-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "9587e4b54fce34c6c14df563d409389e59c8e7e240f4f191590fd098d83d6562")
2121

22-
set(win32_binary_url "https://cmake.org/files/v3.8/cmake-3.8.1-win32-x86.zip")
23-
set(win32_binary_sha256 "0e9cbf89370440410da8639309053defa44f1ff5cc31476c1fdc8cc0b59604b0")
22+
set(win32_binary_url "https://cmake.org/files/v3.9/cmake-3.9.0-win32-x86.zip")
23+
set(win32_binary_sha256 "9d593839f64b94718a1b75b8519b56ecb959e4d37d406bf2a087e2c1f7a6b89c")
2424

25-
set(win64_binary_url "https://cmake.org/files/v3.8/cmake-3.8.1-win64-x64.zip")
26-
set(win64_binary_sha256 "f2abe3d588365d46d84fe05e5644a2d85c981018e98b742ee60a3fc1d818d22b")
25+
set(win64_binary_url "https://cmake.org/files/v3.9/cmake-3.9.0-win64-x64.zip")
26+
set(win64_binary_sha256 "584f5c58f322481f29fee482b7627751917ec916fd312de7ced6b046bd55c2f5")

README.rst

+1-1
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.8.1 <https://cmake.org/cmake/help/v3.8/index.html>`_.
23+
The CMake python wheels provide `CMake 3.9.0 <https://cmake.org/cmake/help/v3.9/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

+1-1
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.8.1 <https://cmake.org/cmake/help/v3.8/index.html>`_.
18+
The CMake python wheels provide `CMake 3.9.0 <https://cmake.org/cmake/help/v3.9/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

tests/test_wheel.py

+1-1
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.8.1"
16+
expected_version = "3.9.0"
1717

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

0 commit comments

Comments
 (0)