From 3c52648358d1eb717cbee5d86487c5fca99dd9aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Mon, 12 Jan 2026 22:25:24 +0100 Subject: [PATCH 1/2] Adaptations to VoronoiFVM v3 --- .github/dependabot.yml | 10 ++++++++++ Project.toml | 2 +- notebooks/HalfCellAppliedPotential.jl | 2 +- notebooks/ICMPBP-DD-Draft.jl | 1 + notebooks/ICMPBP-EndOfHackathon.jl | 1 + notebooks/SymmetricCellSurfaceCharge-Interactive.jl | 1 + 6 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d9b5903 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "julia" + directory: "/" + schedule: + interval: "daily" diff --git a/Project.toml b/Project.toml index 9af2e20..4fc9746 100644 --- a/Project.toml +++ b/Project.toml @@ -50,7 +50,7 @@ PreallocationTools = "0.4" PythonCall = "0.9" PythonPlot = "1" Revise = "3.12.1" -VoronoiFVM = "2.14" +VoronoiFVM = "2.14, 3" julia = "1.11" [extras] diff --git a/notebooks/HalfCellAppliedPotential.jl b/notebooks/HalfCellAppliedPotential.jl index d596f8d..d7b2c17 100644 --- a/notebooks/HalfCellAppliedPotential.jl +++ b/notebooks/HalfCellAppliedPotential.jl @@ -94,7 +94,7 @@ p1 = let fig, ax = pyplot.subplots(1, 1) fig.set_size_inches(600 / 100, 300 / 100) κ = 10 - ax.set_title("Double layer capacitance, κ=$(κ)\n Dashed: witghout dielectric decrement") + ax.set_title("Double layer capacitance, κ=$(κ)\n Dashed: without dielectric decrement") set_κ!(halfcell, κ) set_κ!(halfcelldd, κ) for i in 1:length(molarities) diff --git a/notebooks/ICMPBP-DD-Draft.jl b/notebooks/ICMPBP-DD-Draft.jl index ff27024..6342f03 100644 --- a/notebooks/ICMPBP-DD-Draft.jl +++ b/notebooks/ICMPBP-DD-Draft.jl @@ -23,6 +23,7 @@ begin using Revise using PlutoUI, HypertextLiteral, UUIDs using VoronoiFVM + using VoronoiFVM: data using ExtendableGrids using LinearAlgebra using LessUnitful diff --git a/notebooks/ICMPBP-EndOfHackathon.jl b/notebooks/ICMPBP-EndOfHackathon.jl index a37e8bd..db6ca78 100644 --- a/notebooks/ICMPBP-EndOfHackathon.jl +++ b/notebooks/ICMPBP-EndOfHackathon.jl @@ -23,6 +23,7 @@ begin using Revise using PlutoUI, HypertextLiteral, UUIDs using VoronoiFVM + using VoronoiFVM: data using ExtendableGrids using LinearAlgebra using LessUnitful diff --git a/notebooks/SymmetricCellSurfaceCharge-Interactive.jl b/notebooks/SymmetricCellSurfaceCharge-Interactive.jl index 08f0e6e..6d8c91d 100644 --- a/notebooks/SymmetricCellSurfaceCharge-Interactive.jl +++ b/notebooks/SymmetricCellSurfaceCharge-Interactive.jl @@ -23,6 +23,7 @@ begin using Revise using PlutoUI, HypertextLiteral, UUIDs using VoronoiFVM + using VoronoiFVM: data using ExtendableGrids using LinearAlgebra using LessUnitful From 74d6b9e682a2bc40f7cff995e369537797b7656d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Mon, 12 Jan 2026 22:26:56 +0100 Subject: [PATCH 2/2] test on macos-latest --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 652c96a..5ed509c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: os: - ubuntu-latest - windows-latest - - macOS-14 # arm + - macOS-latest # arm arch: - x64 - aarch64 @@ -30,7 +30,7 @@ jobs: arch: aarch64 - os: windows-latest arch: aarch64 - - os: macOS-14 + - os: macOS-latest arch: x64 steps: - uses: actions/checkout@v5