Skip to content

Commit 87ebee3

Browse files
authored
Change LightGraphs to Graphs (#32)
* updated LightGraphs -> Graphs * updated supported TikzGraphs versions
1 parent 963d249 commit 87ebee3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ version = "0.4.0"
44

55
[deps]
66
CommonSubexpressions = "bbf7d656-a473-5ed7-a52c-81e309532950"
7-
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
7+
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
88
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
99
TikzGraphs = "b4f28e30-c73f-5eaf-a395-8a9db949a742"
1010

1111
[compat]
1212
CommonSubexpressions = "0.2, 0.3"
13-
LightGraphs = "0.13.1, 0.14, 1.0, 1.1, 1.2, 1.3"
13+
Graphs = "1.4, 1.5, 1.6"
1414
MacroTools = "0.4, 0.5"
15-
TikzGraphs = "1.0, 1.1"
15+
TikzGraphs = "1.3"
1616
julia = "^0.7, ^1"
1717

1818
[extras]

src/TreeView.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module TreeView
22

3-
using LightGraphs, TikzGraphs
3+
using Graphs, TikzGraphs
44
using MacroTools
55
using CommonSubexpressions
66

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using TreeView
2-
using LightGraphs
2+
using Graphs
33
using Test
44

55
# write your own tests here
@@ -8,7 +8,7 @@ using Test
88
t = @tree 1x
99

1010
@test isa(t, TreeView.LabelledTree)
11-
@test isa(t.g, LightGraphs.DiGraph)
11+
@test isa(t.g, Graphs.DiGraph)
1212
@test isa(t.labels, Vector{Any})
1313

1414
@test vertices(t.g) == collect(1:3)

0 commit comments

Comments
 (0)