From 977167d618def56b0fcc046395456d7d4cc14dbb Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 20 Apr 2026 20:54:06 -0400 Subject: [PATCH 1/3] Add sources to docs project --- docs/Project.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index 20af659..abdccec 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -4,4 +4,6 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" FlyThroughPaths = "c11bb9a7-2755-425a-88f3-ebe93bbdb91f" GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a" Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" -MakieCore = "20f20a25-4f0e-4fdf-b5d1-57303727442b" + +[sources] +FlyThroughPaths = {path = ".."} From 7721eedc03c27763784eef735f4d9851107de735 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 20 Apr 2026 20:57:02 -0400 Subject: [PATCH 2/3] Add test project and workspaces --- Project.toml | 12 +++--------- test/Project.toml | 7 +++++++ 2 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 test/Project.toml diff --git a/Project.toml b/Project.toml index d14b109..9b7cb67 100644 --- a/Project.toml +++ b/Project.toml @@ -3,6 +3,9 @@ uuid = "c11bb9a7-2755-425a-88f3-ebe93bbdb91f" authors = ["Tim Holy and contributors"] version = "0.1.3" +[workspace] +projects = ["test", "docs"] + [deps] StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" @@ -13,15 +16,6 @@ Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" FlyThroughPathsMakieExt = "Makie" [compat] -LinearAlgebra = "1" Makie = "0.21, 0.22, 0.23, 0.24" StaticArrays = "1" -Test = "1" julia = "1.10" - -[extras] -LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" -Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" - -[targets] -test = ["LinearAlgebra", "Test"] diff --git a/test/Project.toml b/test/Project.toml new file mode 100644 index 0000000..d0f617a --- /dev/null +++ b/test/Project.toml @@ -0,0 +1,7 @@ +[deps] +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + + +[sources] +FlyThroughPaths = {path = ".."} \ No newline at end of file From 803f9e27560a4b69456937a370f1f269e5ccf01c Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 20 Apr 2026 20:57:26 -0400 Subject: [PATCH 3/3] Update CI documentation steps --- .github/workflows/CI.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8fed14e..18c1c06 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -61,8 +61,6 @@ jobs: run: | xvfb-run -s '-screen 0 1024x768x24' julia --project=docs -e ' using Pkg - Pkg.develop(PackageSpec(path=pwd())) - Pkg.add(name = "DocumenterVitepress", rev = "master") Pkg.instantiate()' env: DISPLAY: ':0'