Skip to content

Commit f25edab

Browse files
authored
Merge pull request #148 from JohanMabille/upgrade
Upgraded to xtensor 0.21.2
2 parents 06c8cad + 38a5ac5 commit f25edab

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ install:
2121
- conda update -q conda
2222
- conda info -a
2323
- conda install gtest cmake -c conda-forge
24-
- conda install xtensor=0.20.6 -c conda-forge
24+
- conda install xtensor=0.21.2 -c conda-forge
2525
- conda install m2w64-openblas -c msys2
2626
# Patch OpenBLASConfig.cmake
2727
- ps: (Get-Content $Env:MINICONDA\Library\mingw-w64\lib\cmake\openblas\OpenBLASConfig.cmake).replace('mingw64', 'mingw-w64') | Set-Content $Env:MINICONDA\Library\mingw-w64\lib\cmake\openblas\OpenBLASConfig.cmake

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: cpp
2-
dist: trusty
2+
dist: xenial
33
matrix:
44
include:
55
- os: linux
@@ -72,7 +72,7 @@ matrix:
7272
apt:
7373
sources:
7474
- ubuntu-toolchain-r-test
75-
- llvm-toolchain-trusty-3.9
75+
- llvm-toolchain-xenial-3.9
7676
packages:
7777
- g++-4.9
7878
- clang-3.9
@@ -82,7 +82,7 @@ matrix:
8282
apt:
8383
sources:
8484
- ubuntu-toolchain-r-test
85-
- llvm-toolchain-trusty-4.0
85+
- llvm-toolchain-xenial-4.0
8686
packages:
8787
- g++-4.9
8888
- clang-4.0
@@ -92,7 +92,7 @@ matrix:
9292
apt:
9393
sources:
9494
- ubuntu-toolchain-r-test
95-
- llvm-toolchain-trusty-5.0
95+
- llvm-toolchain-xenial-5.0
9696
packages:
9797
- g++-4.9
9898
- clang-5.0
@@ -102,7 +102,7 @@ matrix:
102102
apt:
103103
sources:
104104
- ubuntu-toolchain-r-test
105-
- llvm-toolchain-trusty-6.0
105+
- llvm-toolchain-xenial-6.0
106106
packages:
107107
- clang-6.0
108108
env: COMPILER=clang CLANG=6.0 BLAS=OpenBLAS
@@ -145,7 +145,7 @@ install:
145145
- conda info -a
146146
- conda install cmake -c conda-forge
147147
# Install xtensor and BLAS
148-
- conda install xtensor=0.21.1 -c conda-forge
148+
- conda install xtensor=0.21.2 -c conda-forge
149149
- if [[ "$BLAS" == "OpenBLAS" ]]; then
150150
conda install openblas "blas * openblas" -c conda-forge;
151151
elif [[ "$BLAS" == "mkl" ]]; then

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ message(STATUS "xtensor-blas v${${PROJECT_NAME}_VERSION}")
4444
# Dependencies
4545
# ============
4646

47-
find_package(xtensor 0.20 REQUIRED)
47+
find_package(xtensor 0.21 REQUIRED)
4848
message(STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS}/xtensor")
4949

5050
# Build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ http://xtensor-blas.readthedocs.io/
6464

6565
| `xtensor-blas` | `xtensor` |
6666
|-----------------|-----------|
67-
| master | ^0.21.1 |
67+
| master | ^0.21.2 |
6868
| 0.17.0 | ^0.21.1 |
6969
| 0.16.1 | ^0.20.4 |
7070
| 0.16.0 | ^0.20.0 |

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
gtest ^
4343
mkl-devel ^
4444
ninja ^
45-
xtensor=0.20.6 ^
45+
xtensor=0.21.2 ^
4646
python=3.6
4747
conda list
4848
displayName: "Install conda packages"

test/downloadGTest.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ project(googletest-download NONE)
1414
include(ExternalProject)
1515
ExternalProject_Add(googletest
1616
GIT_REPOSITORY https://github.com/google/googletest.git
17-
GIT_TAG release-1.8.0
17+
GIT_TAG release-1.10.0
1818
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
1919
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
2020
CONFIGURE_COMMAND ""

0 commit comments

Comments
 (0)