File tree Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -35,23 +35,20 @@ jobs:
3535 - name : " everything else"
3636 args : " --skip mcmc/gibbs.jl mcmc/Inference.jl ad.jl"
3737 runner :
38- # TODO(mhauru) All the ones below that run on 1.11 should actually be run on 1.
39- # The current setup is a temporary arrangement to deal with issues where Mooncake
40- # and Libtask are broken on 1.12.
4138 # Default
42- - version : ' 1.11 '
39+ - version : ' 1'
4340 os : ubuntu-latest
4441 num_threads : 1
4542 # Multithreaded
46- - version : ' 1.11 '
43+ - version : ' 1'
4744 os : ubuntu-latest
4845 num_threads : 2
4946 # Windows
50- - version : ' 1.11 '
47+ - version : ' 1'
5148 os : windows-latest
5249 num_threads : 1
5350 # macOS
54- - version : ' 1.11 '
51+ - version : ' 1'
5552 os : macos-latest
5653 num_threads : 1
5754 # Minimum supported Julia version
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ Combinatorics = "1"
5353Distributions = " 0.25"
5454DistributionsAD = " 0.6.3"
5555DynamicHMC = " 2.1.6, 3.0"
56+ DynamicPPL = " 0.38"
5657FiniteDifferences = " 0.10.8, 0.11, 0.12"
5758ForwardDiff = " 0.10.12 - 0.10.32, 0.10, 1"
5859HypothesisTests = " 0.11"
Original file line number Diff line number Diff line change @@ -10,10 +10,8 @@ using Test
1010using .. Models: gdemo_default
1111import ForwardDiff, ReverseDiff
1212
13- # Detect if prerelease version, if so, we skip some tests
14- const IS_PRERELEASE = ! isempty (VERSION . prerelease)
15- const INCLUDE_MOONCAKE = ! IS_PRERELEASE
16-
13+ # Skip Mooncake on 1.12 as it is not compatible yet
14+ const INCLUDE_MOONCAKE = VERSION < v " 1.12"
1715if INCLUDE_MOONCAKE
1816 import Pkg
1917 Pkg. add (" Mooncake" )
You can’t perform that action at this time.
0 commit comments