Skip to content

Commit

Permalink
Merge pull request #148 from JohanMabille/upgrade
Browse files Browse the repository at this point in the history
Upgraded to xtensor 0.21.2
  • Loading branch information
JohanMabille committed Dec 17, 2019
2 parents 06c8cad + 38a5ac5 commit f25edab
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install:
- conda update -q conda
- conda info -a
- conda install gtest cmake -c conda-forge
- conda install xtensor=0.20.6 -c conda-forge
- conda install xtensor=0.21.2 -c conda-forge
- conda install m2w64-openblas -c msys2
# Patch OpenBLASConfig.cmake
- 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
Expand Down
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: cpp
dist: trusty
dist: xenial
matrix:
include:
- os: linux
Expand Down Expand Up @@ -72,7 +72,7 @@ matrix:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-3.9
- llvm-toolchain-xenial-3.9
packages:
- g++-4.9
- clang-3.9
Expand All @@ -82,7 +82,7 @@ matrix:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
- llvm-toolchain-xenial-4.0
packages:
- g++-4.9
- clang-4.0
Expand All @@ -92,7 +92,7 @@ matrix:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-5.0
- llvm-toolchain-xenial-5.0
packages:
- g++-4.9
- clang-5.0
Expand All @@ -102,7 +102,7 @@ matrix:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
- llvm-toolchain-xenial-6.0
packages:
- clang-6.0
env: COMPILER=clang CLANG=6.0 BLAS=OpenBLAS
Expand Down Expand Up @@ -145,7 +145,7 @@ install:
- conda info -a
- conda install cmake -c conda-forge
# Install xtensor and BLAS
- conda install xtensor=0.21.1 -c conda-forge
- conda install xtensor=0.21.2 -c conda-forge
- if [[ "$BLAS" == "OpenBLAS" ]]; then
conda install openblas "blas * openblas" -c conda-forge;
elif [[ "$BLAS" == "mkl" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ message(STATUS "xtensor-blas v${${PROJECT_NAME}_VERSION}")
# Dependencies
# ============

find_package(xtensor 0.20 REQUIRED)
find_package(xtensor 0.21 REQUIRED)
message(STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS}/xtensor")

# Build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ http://xtensor-blas.readthedocs.io/

| `xtensor-blas` | `xtensor` |
|-----------------|-----------|
| master | ^0.21.1 |
| master | ^0.21.2 |
| 0.17.0 | ^0.21.1 |
| 0.16.1 | ^0.20.4 |
| 0.16.0 | ^0.20.0 |
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
gtest ^
mkl-devel ^
ninja ^
xtensor=0.20.6 ^
xtensor=0.21.2 ^
python=3.6
conda list
displayName: "Install conda packages"
Expand Down
2 changes: 1 addition & 1 deletion test/downloadGTest.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ project(googletest-download NONE)
include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.8.0
GIT_TAG release-1.10.0
SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
Expand Down

0 comments on commit f25edab

Please sign in to comment.