Skip to content

Commit 9b379d7

Browse files
packages
1 parent 00e802d commit 9b379d7

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

GNNLux/docs/make.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
using Pkg
22
Pkg.activate(@__DIR__)
3-
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNGraphs"))
4-
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNlib"))
5-
Pkg.develop(path=joinpath(@__DIR__, ".."))
3+
Pkg.develop([
4+
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNGraphs")),
5+
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNlib")),
6+
PackageSpec(path=joinpath(@__DIR__, "..")),
7+
])
68
Pkg.instantiate()
79

810
using Documenter

GNNlib/docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
using Pkg
22
Pkg.activate(@__DIR__)
3-
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNGraphs"))
4-
Pkg.develop(path=joinpath(@__DIR__, ".."))
3+
Pkg.develop([
4+
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNGraphs")),
5+
PackageSpec(path=joinpath(@__DIR__, "..")),
6+
])
57
Pkg.instantiate()
68

79
using Documenter

GraphNeuralNetworks/docs/make.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
using Pkg
22
Pkg.activate(@__DIR__)
3-
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNGraphs"))
4-
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNlib"))
5-
Pkg.develop(path=joinpath(@__DIR__, ".."))
3+
Pkg.develop([
4+
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNGraphs")),
5+
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNlib")),
6+
PackageSpec(path=joinpath(@__DIR__, "..")),
7+
])
68
Pkg.instantiate()
79

810
using Documenter

0 commit comments

Comments
 (0)