Skip to content

Commit

Permalink
Removed unneeded dependencies, use CairoMakie instead of GLMakie
Browse files Browse the repository at this point in the history
  • Loading branch information
ffevotte committed Nov 1, 2023
1 parent fc3f750 commit 22c14ba
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- name: Run doctests
run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using EqFlux
Expand Down
8 changes: 0 additions & 8 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,5 @@ ChunkSplitters = "ae650224-84b6-46f8-82ea-d812ca08434e"
FastLapackInterface = "29a986be-02c6-4525-aec4-84b980013641"
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
GridapEmbedded = "8838a6a3-0006-4405-b874-385995508d5d"
GridapGmsh = "3025c34a-b394-11e9-2a55-3fee550c04c8"
Infiltrator = "5903a43b-9cc3-4c30-8d17-598619ec4e9b"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
ShiftedArrays = "1277b4bf-5013-50f5-be3d-901d8477a67a"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
ThreadsX = "ac1d9e8a-700a-412c-b207-f0111f4b6c0d"
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
ToeplitzMatrices = "c751599d-da0a-543b-9d20-d0a503d91d24"
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[deps]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
EqFlux = "ed78a1e2-7d3c-417b-a9de-456fe7bc806a"
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
GridapMakie = "41f30b06-6382-4b60-a5f7-79d86b35bf5d"
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/readme/helpers.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Gridap
using LaTeXStrings
using GridapMakie, GLMakie
using GridapMakie, CairoMakie

# Define some helper functions
L2_inner_product(f, g, dx) = (f g) * dx
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples/readme/readme.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ In either case,the estimator takes the form

using Gridap
using GridapMakie
using GLMakie
using CairoMakie

n = 10 # Number of elements in x and y for square mesh
domain = (0,1,0,1)
Expand Down
2 changes: 2 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
using EqFlux
using Test

@testset "EqFlux.jl" begin
# Write your tests here.
end

0 comments on commit 22c14ba

Please sign in to comment.