From 4e8e833b218d67fd2e7384c8196cf98cc750c844 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Wed, 24 Jun 2026 16:33:49 +0200 Subject: [PATCH 1/4] Add Conda to docs, install matplotlib in docs generation --- docs/Project.toml | 4 ++++ docs/make.jl | 2 ++ 2 files changed, 6 insertions(+) diff --git a/docs/Project.toml b/docs/Project.toml index b64a9dc..3f0b784 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -1,5 +1,6 @@ [deps] CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" +Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d" Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" ExampleJuggler = "3bbe58f8-ed81-4c4e-a134-03e85fcf4a1a" ExtendableGrids = "cfc395e8-590f-11e8-1f13-43a2532b2fa8" @@ -16,6 +17,9 @@ TetGen = "c5d3f3f7-f850-59f6-8a2e-ffc6dc1317ea" Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344" VoronoiFVM = "82b139dc-5afc-11e9-35da-9b9bdfd336f3" +[sources] +SimplexGridFactory = {path = ".."} + [compat] ExampleJuggler = "2" VoronoiFVM = "1.21" diff --git a/docs/make.jl b/docs/make.jl index 6c77acb..510a593 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,6 +1,8 @@ using Documenter, SimplexGridFactory, ExtendableGrids import PlutoSliderServer using GridVisualize, ExampleJuggler +using Conda +Conda.add("matplotlib") ENV["MPLBACKEND"] = "agg" import CairoMakie, PyPlot ExampleJuggler.verbose!(true) From e4883fd84fcd9033a7fbe6cdfd34f38bcc1922b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Wed, 24 Jun 2026 16:59:14 +0200 Subject: [PATCH 2/4] remove python env variable, run on `pre` --- .github/workflows/ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17d83e8..cdc2710 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: version: - '1.9' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'. - '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. -# - 'nightly' + - 'pre' os: - ubuntu-latest - windows-latest @@ -50,12 +50,8 @@ jobs: ${{ runner.os }}- - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - env: - PYTHON: "" - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 - with: - PYTHON: "" docs: name: Documentation runs-on: ubuntu-latest @@ -70,12 +66,6 @@ jobs: Pkg.develop(PackageSpec(path=pwd())) Pkg.instantiate()' env: - PYTHON: "" - # - run: | - # julia --project=docs -e ' - # using Documenter: doctest - # using MYPACKAGE - # doctest(MYPACKAGE)' - run: julia --project=docs docs/make.jl env: PYTHON: "" From 314721af376a8b1a17ec8441c66944895fe0e97f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Wed, 24 Jun 2026 17:05:06 +0200 Subject: [PATCH 3/4] update voronoifvm in docs --- docs/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index 3f0b784..55eedec 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -22,4 +22,4 @@ SimplexGridFactory = {path = ".."} [compat] ExampleJuggler = "2" -VoronoiFVM = "1.21" +VoronoiFVM = "3" From 255d2a04c3d437d1279dec8535378af7789ef572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Wed, 24 Jun 2026 17:10:49 +0200 Subject: [PATCH 4/4] fix ci --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdc2710..abd1b69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,10 +65,8 @@ jobs: using Pkg Pkg.develop(PackageSpec(path=pwd())) Pkg.instantiate()' - env: - run: julia --project=docs docs/make.jl env: - PYTHON: "" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}