Skip to content

Commit 26a1e9f

Browse files
committed
fix
1 parent 9964237 commit 26a1e9f

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

Project.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
name = "MetaGraphs"
2-
uuid = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
3-
version = "0.6.5"
1+
name = "MetaGraphsNext"
42

53
[deps]
64
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
@@ -13,7 +11,6 @@ LightGraphs = "1.2"
1311

1412
[extras]
1513
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
16-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1714

1815
[targets]
19-
test = ["Documenter", "Test"]
16+
test = ["Documenter"]

src/MetaGraphs.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module MetaGraphs
1+
module MetaGraphsNext
22
using LightGraphs
33
using JLD2
44

@@ -232,7 +232,7 @@ end
232232
Return the weight type for metagraph `g`.
233233
234234
```jldoctest
235-
julia> using MetaGraphs
235+
julia> using MetaGraphsNext
236236
237237
julia> using LightGraphs: Graph
238238
@@ -249,7 +249,7 @@ weighttype(g::MetaGraph{<:Any,<:Any,<:Any,<:Any,<:Any,<:Any,<:Any,Weight}) where
249249
Return the weight function for metagraph `g`.
250250
251251
```jldoctest
252-
julia> using MetaGraphs
252+
julia> using MetaGraphsNext
253253
254254
julia> using LightGraphs: Graph
255255
@@ -265,7 +265,7 @@ weightfunction(g::MetaGraph) = g.weightfunction
265265
Return the default weight for metagraph `g`.
266266
267267
```jldoctest
268-
julia> using MetaGraphs
268+
julia> using MetaGraphsNext
269269
270270
julia> using LightGraphs: Graph
271271

test/runtests.jl

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using MetaGraphs
2-
using LightGraphs
3-
using LightGraphs.SimpleGraphs: fadj, badj
1+
using MetaGraphsNext
42
import Documenter: doctest
5-
import Test: @testset, @test, @test_broken
63

7-
doctest(MetaGraphs)
4+
doctest(MetaGraphsNext)

0 commit comments

Comments
 (0)