Skip to content

Commit 6e5bf16

Browse files
authored
Merge pull request #21 from scikit-build/update-to-cmake-3.8.0
Update to CMake v3.8.0
2 parents 5a4faaa + c741c03 commit 6e5bf16

File tree

8 files changed

+34
-17
lines changed

8 files changed

+34
-17
lines changed

.circleci-matrix.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ env:
99
- MANYLINUX_IMAGE=manylinux-x86 MANYLINUX_PYTHON=cp34-cp34m
1010
- MANYLINUX_IMAGE=manylinux-x64 MANYLINUX_PYTHON=cp35-cp35m
1111
- MANYLINUX_IMAGE=manylinux-x86 MANYLINUX_PYTHON=cp35-cp35m
12+
- MANYLINUX_IMAGE=manylinux-x64 MANYLINUX_PYTHON=cp36-cp36m
13+
- MANYLINUX_IMAGE=manylinux-x86 MANYLINUX_PYTHON=cp36-cp36m
1214
command:
1315
- docker run dockcross/$MANYLINUX_IMAGE > ~/bin/dockcross && chmod +x ~/bin/dockcross
1416
- |

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ language: python
88
matrix:
99
include:
1010

11+
- os: osx
12+
language: generic
13+
env:
14+
- PYTHON_VERSION=3.6.1
15+
1116
- os: osx
1217
language: generic
1318
env:
@@ -30,6 +35,7 @@ matrix:
3035

3136
cache:
3237
directories:
38+
- $HOME/.pyenv/versions/3.6.1
3339
- $HOME/.pyenv/versions/3.5.2
3440
- $HOME/.pyenv/versions/3.4.5
3541
- $HOME/.pyenv/versions/3.3.6

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

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

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")
19+
set(macosx_binary_url "https://cmake.org/files/v3.8/cmake-3.8.0-Darwin-x86_64.tar.gz")
20+
set(macosx_binary_sha256 "aba3cf725dfd80324eb4251c13e890c25b65d1b8719454e4769e5d33abd140f1")
2121

22-
set(win32_binary_url "https://cmake.org/files/v3.7/cmake-3.7.1-win32-x86.zip")
23-
set(win32_binary_sha256 "d2ec53ba3e3a12f734ed7127704ff9a83361e7cc6f9a0f0b3e2b56d9868a76b9")
22+
set(win32_binary_url "https://cmake.org/files/v3.8/cmake-3.8.0-win32-x86.zip")
23+
set(win32_binary_sha256 "857fca00974ad6ac12fa042373d85ad1288770d4f09fbd99753c822df76b1c6c")
2424

25-
set(win64_binary_url "https://cmake.org/files/v3.7/cmake-3.7.1-win64-x64.zip")
26-
set(win64_binary_sha256 "659ecb8207e1266786188c7eaf45308458ba5f719c985970f6f55ec0b5a96746")
25+
set(win64_binary_url "https://cmake.org/files/v3.8/cmake-3.8.0-win64-x64.zip")
26+
set(win64_binary_sha256 "602d6c0bd458291d21414f94ee24f5bb623f3a623409e15601cc80b9922ff6bd")

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

appveyor.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ environment:
4949
PYTHON_ARCH: "64"
5050
BLOCK: "0"
5151

52+
- PYTHON_DIR: "C:\\Python36"
53+
PYTHON_VERSION: "3.6.x"
54+
PYTHON_ARCH: "32"
55+
BLOCK: "0"
56+
57+
- PYTHON_DIR: "C:\\Python36-x64"
58+
PYTHON_VERSION: "3.6.x"
59+
PYTHON_ARCH: "64"
60+
BLOCK: "0"
61+
5262
GIRDER_TOKEN:
5363
secure: qVsf5rslUEw6KTjGI+uF4hEtP9xkBzZiRmLGsBZN5I32/hNccjih53ydb4tegdnK
5464

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

2020
.. toctree::
2121
:maxdepth: 2

scikit-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ before_install:
88
RUN_ENV: .\\..\\addons\\appveyor\\run-with-visual-studio.cmd
99
commands:
1010
- python ../addons/appveyor/patch_vs2008.py
11-
- python ../addons/appveyor/install_cmake.py 3.6.2
1211

1312
circle:
1413
environment:
@@ -28,7 +27,7 @@ install:
2827
commands:
2928
- python --version
3029
- python -m pip install --disable-pip-version-check --upgrade pip
31-
- $<RUN_ENV> pip install -r requirements-dev.txt
30+
- $<RUN_ENV> pip install -U -r requirements-dev.txt
3231

3332
before_build:
3433
commands:

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

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

0 commit comments

Comments
 (0)