Skip to content

Commit e7b4076

Browse files
authored
Merge pull request #42 from fbourgin/update_xtensor_0.27
Update xtensor 0.27
2 parents d532c05 + 2a3dbc3 commit e7b4076

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/actions/unix_impl/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
make install;
2020
cd ../..;
2121
else
22-
micromamba install xtensor-r==0.16.0 -c conda-forge;
22+
micromamba install xtensor-r==0.17.0 -c conda-forge;
2323
fi
2424
shell: bash -e -l {0}
2525

src/Makevars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## -*- mode: makefile; -*-
22

3-
PKG_CXXFLAGS = -I../inst/include --std=c++17
3+
PKG_CXXFLAGS = -I../inst/include --std=c++20 -D_LIBCPP_DISABLE_AVAILABILITY
44
# CXX_STD = CXX14

src/Makevars.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## -*- mode: makefile; -*-
22

3-
PKG_CXXFLAGS = -I../inst/include --std=c++17
3+
PKG_CXXFLAGS = -I../inst/include --std=c++20
44
# CXX_STD = CXX14

src/xtensor_r_example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <Rcpp.h>
1010

11-
// [[Rcpp::plugins(cpp17)]]
11+
// [[Rcpp::plugins(cpp20)]]
1212

1313
// [[Rcpp::export]]
1414
xt::rtensor<double, 2> xtensor_r_example(xt::rtensor<int, 1> tens)

tools/vendor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
XTL_VERSION=0.8.1
22
XSIMD_VERSION=13.2.1
3-
XTENSOR_VERSION=0.26.0
4-
XTENSOR_R_VERSION=0.16.0
3+
XTENSOR_VERSION=0.27.0
4+
XTENSOR_R_VERSION=0.17.0
55

66
# xtl
77
if [ -d "./inst/include/xtl" ]

0 commit comments

Comments
 (0)