Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,20 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
groups:
# Group all GitHub Actions PRs into a single PR:
all-github-actions:
patterns:
- "*"
- package-ecosystem: "julia"
directories: # Location of Julia projects
- "/LibTrixi.jl"
- "/LibTrixi.jl/test"
- "/docs"
schedule:
interval: "daily"
groups:
# Group all Julia package updates into a single PR:
all-julia-dependencies:
patterns:
- "*"
45 changes: 0 additions & 45 deletions .github/workflows/CompatHelper.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LibTrixi.jl/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"
MPI = "0.20.13"
Pkg = "1.8"
SciMLBase = "2.33.0, 3"
Trixi = "0.15, 0.16"
Trixi = "0.16.10"
julia = "1.8"
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ function init_simstate()
save_solution)

# use a Runge-Kutta method with automatic (error based) time step size control
integrator = init(ode, RDPK3SpFSAL49(thread = Trixi.False());
integrator = init(ode, RDPK3SpFSAL49(thread = Trixi.Threaded());
abstol = 1.0e-6, reltol = 1.0e-6,
ode_default_options()..., callback = callbacks, maxiters=1e7);

Expand Down
2 changes: 1 addition & 1 deletion LibTrixi.jl/examples/libelixir_t8code3d_euler_tracer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function init_simstate()
save_solution)

# use a Runge-Kutta method with automatic (error based) time step size control
integrator = init(ode, RDPK3SpFSAL49(thread = Trixi.False());
integrator = init(ode, RDPK3SpFSAL49(thread = Trixi.Threaded());
abstol = 1.0e-6, reltol = 1.0e-6,
ode_default_options()..., callback = callbacks, maxiters=1e7);

Expand Down
4 changes: 2 additions & 2 deletions LibTrixi.jl/test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"

[compat]
OrdinaryDiffEqLowStorageRK = "1"
Trixi = "0.15, 0.16"
OrdinaryDiffEqLowStorageRK = "1.2, 2, 3"
Trixi = "0.16.10"
Loading