Skip to content

Commit

Permalink
Merge pull request #177 from WIAS-PDELib/jf/LinearSolve3Again
Browse files Browse the repository at this point in the history
Jf/linear solve3 again
  • Loading branch information
j-fu authored Feb 17, 2025
2 parents 0b4c68c + e13cf9f commit 3aefc9c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "VoronoiFVM"
uuid = "82b139dc-5afc-11e9-35da-9b9bdfd336f3"
authors = ["Jürgen Fuhrmann <[email protected]>", "Patrick Jaap", "Daniel Runge", "Dilara Abdel", "Jan Weidner", "Alexander Seiler", "Patricio Farrell", "Matthias Liero"]
version = "2.6.3"
version = "2.7.0"

[deps]
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
Expand Down Expand Up @@ -49,7 +49,7 @@ GridVisualize = "0.5.2,0.6.1,1"
InteractiveUtils = "1.9"
JLD2 = "0.4.29, 0.5"
LinearAlgebra = "1.9"
LinearSolve = "2.36"
LinearSolve = "2.36, 3.3"
Printf = "1.9"
Random = "1.9"
RecursiveArrayTools = "2,3"
Expand Down
7 changes: 6 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ function run_all_tests(; run_notebooks = false, notebooksonly = false)
Aqua.test_stale_deps(VoronoiFVM)
Aqua.test_deps_compat(VoronoiFVM)
Aqua.test_piracies(VoronoiFVM, broken = true)
Aqua.test_persistent_tasks(VoronoiFVM)
if VERSION >= v"1.11.0"
# Avoid running into https://github.com/SciML/LinearSolve.jl/issues/573
Aqua.test_persistent_tasks(VoronoiFVM)
else
@info "skipping Aqua.test_persistent_tasks(VoronoiFVM) on Julia 1.10"
end
end

if isdefined(Docs, :undocumented_names) # >=1.11
Expand Down
4 changes: 2 additions & 2 deletions test/test_formfactors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function ttri(; ntest = 100)
cellfactors!(Triangle2D, Cartesian2D, coord2d, cellnodes, 1, npar2d, epar2d)
bfacefactors!(Triangle2D, Cartesian3D, coord3d, cellnodes, 1, npar3d, epar3d)

@test npar3d npar2d
@test epar3d epar2d
@test npar3d npar2d rtol = 1.0e-7
@test epar3d epar2d rtol = 1.0e-7
end
return nothing
end
Expand Down

0 comments on commit 3aefc9c

Please sign in to comment.