From 05adbb41600d01ba30c3410aa2eac844664a3245 Mon Sep 17 00:00:00 2001 From: Rik Date: Wed, 28 Jul 2021 13:50:18 +0200 Subject: [PATCH] Bump AxisArrays version --- Project.toml | 2 +- test/runtests.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 6ef941bb..7f46f710 100644 --- a/Project.toml +++ b/Project.toml @@ -31,7 +31,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" [compat] AbstractFFTs = "0.5, 1" AbstractMCMC = "0.4, 0.5, 1.0, 2.0, 3.0" -AxisArrays = "0.4.2" +AxisArrays = "0.4.4" Compat = "2.2, 3" Distributions = "0.21, 0.22, 0.23, 0.24, 0.25" Formatting = "0.4" diff --git a/test/runtests.jl b/test/runtests.jl index 568edc95..5ac95d30 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -19,7 +19,7 @@ Random.seed!(0) @testset "MCMCChains" begin # MLJXGBoostInterface requires Julia >= 1.3 # XGBoost errors on 32bit systems: https://github.com/dmlc/XGBoost.jl/issues/92 - if VERSION >= v"1.3" && Sys.WORD_SIZE == 64 + if VERSION >= v"1.3" && VERSION < v"1.7" && Sys.WORD_SIZE == 64 # run tests related to rstar statistic println("Rstar") Pkg.add("MLJBase")