From cfa62be6f33d6ef87a7f677cc21dfc5b2ac91f16 Mon Sep 17 00:00:00 2001 From: marius Date: Mon, 18 Dec 2023 01:13:43 -0800 Subject: [PATCH] fix tests, test on 1.10 --- .github/workflows/tests_and_docs.yml | 2 +- docs/make.jl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests_and_docs.yml b/.github/workflows/tests_and_docs.yml index 8cbaaf5..cdf8d41 100644 --- a/.github/workflows/tests_and_docs.yml +++ b/.github/workflows/tests_and_docs.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - julia-version: ['1.7', '1.8', '1.9'] + julia-version: ['1.7', '1.8', '1.9', '~1.10.0-0'] threads: ['1', '2'] fail-fast: false steps: diff --git a/docs/make.jl b/docs/make.jl index cf96850..60c2b8b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -9,8 +9,8 @@ end using Documenter, MuseInference, Turing -# change to true to skip running doc code -Documenter.Utilities.Selectors.disable(::Type{Documenter.Expanders.ExampleBlocks}) = false +# uncomment to skip running doc code +# Documenter.Selectors.disable(::Type{Documenter.Expanders.ExampleBlocks}) = true makedocs( sitename = "MuseInference", @@ -25,7 +25,7 @@ makedocs( ], checkdocs = :none, doctest = false, - strict = false, + warnonly = false, modules = [MuseInference] )