From c798bfe26e939e7a08ce79ed7ed04ba52be4c310 Mon Sep 17 00:00:00 2001 From: Daniel Runge Date: Tue, 5 Nov 2024 16:59:31 +0100 Subject: [PATCH 1/2] updated compat to latest ExtendableFEMBase and added UnicodePlots since the extension for the unicode_ plotting methods is not actually loaded --- Project.toml | 12 +++++++----- src/ExtendableFEM.jl | 1 + test/Project.toml | 1 + 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Project.toml b/Project.toml index 901702b8..f3cc6682 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ExtendableFEM" uuid = "a722555e-65e0-4074-a036-ca7ce79a4aed" authors = ["Christian Merdon "] -version = "0.8" +version = "0.8.0" [deps] CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2" @@ -20,22 +20,24 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" SparseDiffTools = "47a9eef4-7e08-11e9-0b38-333d64bd3804" Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" +UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" [compat] CommonSolve = "0.2" DiffResults = "1" DocStringExtensions = "0.8,0.9" -ExtendableFEMBase = "0.7" +ExtendableFEMBase = "0.8" ExtendableGrids = "1.9.2" ExtendableSparse = "1.5.1" ForwardDiff = "0.10.35" GridVisualize = "1.7" -LinearSolve = "2" LinearAlgebra = "1.9" +LinearSolve = "2" Printf = "1.9" -SparseArrays = "1.9" Requires = "1.3" -SparseDiffTools = "^1.19,2" SciMLBase = "2.6" +SparseArrays = "1.9" +SparseDiffTools = "^1.19,2" Symbolics = "4.2,5" +UnicodePlots = "3.7.0" julia = "1.9" diff --git a/src/ExtendableFEM.jl b/src/ExtendableFEM.jl index 2a07c5f3..efca109d 100644 --- a/src/ExtendableFEM.jl +++ b/src/ExtendableFEM.jl @@ -67,6 +67,7 @@ using SparseDiffTools: SparseDiffTools, ForwardColorJacCache, forwarddiff_color_jacobian!, matrix_colors using Symbolics: Symbolics using SciMLBase: SciMLBase +using UnicodePlots: UnicodePlots if !isdefined(Base, :get_extension) using Requires diff --git a/test/Project.toml b/test/Project.toml index 68ce61d1..cc0b79d3 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -14,6 +14,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344" +UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" [compat] Aqua = "0.8" From 7ce8a3b70af07cac11247870dc9539c241b8643a Mon Sep 17 00:00:00 2001 From: Daniel Runge Date: Tue, 5 Nov 2024 19:29:11 +0100 Subject: [PATCH 2/2] edited compat for UnicodePlots to provide backwards compatibility with julia 1.9 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index f3cc6682..b00035d9 100644 --- a/Project.toml +++ b/Project.toml @@ -39,5 +39,5 @@ SciMLBase = "2.6" SparseArrays = "1.9" SparseDiffTools = "^1.19,2" Symbolics = "4.2,5" -UnicodePlots = "3.7.0" +UnicodePlots = "3.6.5" julia = "1.9"