Skip to content

Commit

Permalink
Remove some unnecessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ahojukka5 committed Oct 11, 2019
1 parent eb9db51 commit fa4fc8c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"

[compat]
julia = "≥ 1.0"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
2 changes: 1 addition & 1 deletion src/AsterReader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module AsterReader

using FEMBase, HDF5, LinearAlgebra, SparseArrays
using HDF5

"""
parse_node_id(node_name)
Expand Down
2 changes: 1 addition & 1 deletion test/test_read_aster_mesh.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/AsterReader.jl/blob/master/LICENSE

using FEMBase, Test, AsterReader
using Test, AsterReader
using AsterReader: aster_parse_nodes, aster_read_mesh, MEDFile, get_element_sets

datadir = first(splitext(basename(@__FILE__)))
Expand Down
2 changes: 1 addition & 1 deletion test/test_read_aster_results.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/AsterReader.jl/blob/master/LICENSE

using FEMBase, AsterReader, Test
using AsterReader, Test
using AsterReader: RMEDFile, aster_read_data

datadir = first(splitext(basename(@__FILE__)))
Expand Down
2 changes: 1 addition & 1 deletion test/test_read_gmsh_med.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/AsterReader.jl/blob/master/LICENSE

using FEMBase, Test, AsterReader
using Test, AsterReader
using AsterReader: aster_parse_nodes, aster_read_mesh, MEDFile, get_element_sets

datadir = first(splitext(basename(@__FILE__)))
Expand Down

0 comments on commit fa4fc8c

Please sign in to comment.