From 74bc8ad0fa741090c80bf74f106d0642b2d53e29 Mon Sep 17 00:00:00 2001 From: Nathanael Bosch Date: Mon, 8 Apr 2024 14:26:21 +0100 Subject: [PATCH 1/3] Change the tested julia versions --- .github/workflows/CI.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e890324..a4a4fde 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,9 +19,7 @@ jobs: fail-fast: false matrix: version: - - '1.6' - - '1.9' - - 'nightly' + - '1' os: - ubuntu-latest arch: From 33482cb33f45fe4bf2cb2c98b625d5458d2cfe15 Mon Sep 17 00:00:00 2001 From: Nathanael Bosch Date: Mon, 8 Apr 2024 14:26:30 +0100 Subject: [PATCH 2/3] Add a justfile for convenience --- justfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..76071f4 --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +default: + just --list + +format: + julia --project=@JuliaFormatter -e 'using JuliaFormatter; format(".")' + +docs: + julia --project=docs docs/make.jl + +servedocs: + julia --project=docs -e 'using LiveServer; serve(dir="docs/build")' + +servedocs-continuously: + julia --project=docs -e 'using ProbNumDiffEq, LiveServer; servedocs()' From 4ae9fc7f7b05f0417aeacac9a323078fae44d3a3 Mon Sep 17 00:00:00 2001 From: Nathanael Bosch Date: Mon, 8 Apr 2024 14:31:16 +0100 Subject: [PATCH 3/3] JuliaFormatter.jl --- docs/make.jl | 8 ++++---- test/runtests.jl | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 46f56fb..89867ef 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -16,11 +16,11 @@ makedocs(; canonical = "https://nathanaelbosch.github.io/ChaoticDynamicalSystemLibrary.jl", edit_link = "main", assets = String[], - size_threshold_ignore = ["index.md"],), + size_threshold_ignore = ["index.md"]), pages = [ - "Home" => "index.md", - ],) + "Home" => "index.md" + ]) deploydocs(; repo = "github.com/nathanaelbosch/ChaoticDynamicalSystemLibrary.jl", - devbranch = "main",) + devbranch = "main") diff --git a/test/runtests.jl b/test/runtests.jl index 561a8cc..35c5677 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -10,7 +10,7 @@ using Aqua, JET @testset "Code quality (Aqua.jl)" begin Aqua.test_all(ChaoticDynamicalSystemLibrary; - ambiguities = (imported = false),) + ambiguities = (imported = false)) end if VERSION >= v"1.7"