File tree 5 files changed +6
-14
lines changed
5 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ install:
21
21
- conda config --set always_yes yes --set changeps1 no
22
22
- conda update -q conda
23
23
- conda info -a
24
- - conda install cmake -c conda-forge
25
- - conda install pytest numpy pybind11==2.4.3 xtensor==0.23.10 -c conda-forge
24
+ - conda install mamba -c conda-forge
25
+ - mamba install cmake pytest numpy pybind11 xtensor==0.24.0 -c conda-forge
26
26
- " set PYTHONHOME=%MINICONDA%"
27
27
- cmake -G "NMake Makefiles" -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\Library -D BUILD_TESTS=ON -D PYTHON_EXECUTABLE=%MINICONDA%\\python.exe -DDOWNLOAD_GTEST=ON .
28
28
- nmake test_xtensor_python
Original file line number Diff line number Diff line change 2
2
- job : ' Linux_0'
3
3
strategy :
4
4
matrix :
5
- clang_4 :
6
- llvm_version : ' 4.0'
7
- clang_5 :
8
- llvm_version : ' 5.0'
9
5
clang_6 :
10
6
llvm_version : ' 6.0'
11
7
clang_7 :
15
11
clang_9 :
16
12
llvm_version : ' 9'
17
13
pool :
18
- vmImage : ubuntu-16 .04
14
+ vmImage : ubuntu-18 .04
19
15
variables :
20
16
CC : clang-$(llvm_version)
21
17
CXX : clang++-$(llvm_version)
Original file line number Diff line number Diff line change 2
2
- job : ' Linux_1'
3
3
strategy :
4
4
matrix :
5
- gcc_4 :
6
- gcc_version : ' 4.9'
7
- gcc_5 :
8
- gcc_version : ' 5'
9
5
gcc_6 :
10
6
gcc_version : ' 6'
11
7
gcc_7 :
15
11
gcc_9 :
16
12
gcc_version : ' 9'
17
13
pool :
18
- vmImage : ubuntu-16 .04
14
+ vmImage : ubuntu-18 .04
19
15
variables :
20
16
CC : gcc-$(gcc_version)
21
17
CXX : g++-$(gcc_version)
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ message(STATUS "xtensor-python v${${PROJECT_NAME}_VERSION}")
32
32
# Dependencies
33
33
# ============
34
34
35
- set (xtensor_REQUIRED_VERSION 0.21.2 )
35
+ set (xtensor_REQUIRED_VERSION 0.24.0 )
36
36
if (TARGET xtensor)
37
37
set (xtensor_VERSION ${XTENSOR_VERSION_MAJOR} .${XTENSOR_VERSION_MINOR} .${XTENSOR_VERSION_PATCH} )
38
38
# Note: This is not SEMVER compatible comparison
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ dependencies:
5
5
# Build dependencies
6
6
- cmake
7
7
# Host dependencies
8
- - xtensor=0.23.10
8
+ - xtensor=0.24.0
9
9
- numpy
10
10
- pybind11=2.4.3
11
11
# Test dependencies
You can’t perform that action at this time.
0 commit comments