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' 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/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 = ".."} 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