Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to julia 1.11 #207

Merged
merged 15 commits into from
Nov 26, 2024
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
benegee marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
arch:
- x64
julia_version:
- '1.10'
- '1.11'
benegee marked this conversation as resolved.
Show resolved Hide resolved
t8code_version:
- '3.0.0'
env:
Expand Down
2 changes: 1 addition & 1 deletion LibTrixi.jl/src/api_jl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function trixi_finalize_simulation_jl(simstate)
# x-ref: https://github.com/DLR-AMR/t8code/issues/1295
# x-ref: https://github.com/trixi-framework/libtrixi/pull/215#discussion_r1843676330
mesh, _, _, _ = mesh_equations_solver_cache(simstate.semi)
if mesh isa Trixi.T8codeMesh
if mesh isa Trixi.T8codeMesh || mesh isa Trixi.P4estMesh
finalize(mesh)
end

Expand Down
Loading