From b25f06add078c49b88d68393fc5680df01a0612b Mon Sep 17 00:00:00 2001 From: Michael Hatherly Date: Wed, 27 Nov 2024 11:16:31 +0000 Subject: [PATCH 1/5] Test Julia 1.7 Since the package compat bounds are 1.7 that version should be tested in CI. --- .github/workflows/CI.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2291531..aa74830 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,6 +21,7 @@ jobs: strategy: matrix: version: + - '1.7' - '1' os: - ubuntu-latest From 163cf1995177bf1e73a03b60259bafd1bee043f6 Mon Sep 17 00:00:00 2001 From: MichaelHatherly Date: Wed, 27 Nov 2024 11:22:19 +0000 Subject: [PATCH 2/5] Adjust compat bounds for `SHA` --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 1c4ac80..d24c064 100644 --- a/Project.toml +++ b/Project.toml @@ -27,7 +27,7 @@ MultipleTesting = "0.5, 0.6" NaturalSort = "1.0" OrderedCollections = "1" Printf = "1" -SHA = "0.7" +SHA = "0.7, 1.7" Statistics = "1" StatsBase = "0.33, 0.34" Tables = "1" From 2f01a12296e65675f9deef59b2852397938eb54c Mon Sep 17 00:00:00 2001 From: MichaelHatherly Date: Wed, 27 Nov 2024 11:27:00 +0000 Subject: [PATCH 3/5] Change `@testset` to use a `begin` block --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 5771969..f927b27 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -150,7 +150,9 @@ end ) @testset for func in [as_html, as_latex, as_docx, as_typst] - reftest(t, path) = @testset "$path" run_reftest(t, path, func) + reftest(t, path) = @testset "$path" begin + run_reftest(t, path, func) + end @testset "table_one" begin t = table_one(df, [:value1]) From 43c3c4f7caa8a6027d7e56bbc6b085e7b7f8fc81 Mon Sep 17 00:00:00 2001 From: Michael Hatherly Date: Wed, 27 Nov 2024 11:34:48 +0000 Subject: [PATCH 4/5] Update .github/workflows/CI.yml Co-authored-by: David Widmann --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index aa74830..01940be 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: version: - - '1.7' + - 'min' - '1' os: - ubuntu-latest From 75f14f1f89feab92103b0360399a724cce3b7970 Mon Sep 17 00:00:00 2001 From: Michael Hatherly Date: Wed, 27 Nov 2024 11:53:23 +0000 Subject: [PATCH 5/5] Update Project.toml Co-authored-by: David Widmann --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index d24c064..b619898 100644 --- a/Project.toml +++ b/Project.toml @@ -27,7 +27,7 @@ MultipleTesting = "0.5, 0.6" NaturalSort = "1.0" OrderedCollections = "1" Printf = "1" -SHA = "0.7, 1.7" +SHA = "<0.0.1, 0.7, 1" Statistics = "1" StatsBase = "0.33, 0.34" Tables = "1"