Skip to content

Commit

Permalink
packages
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Dec 9, 2024
1 parent 00e802d commit 9b379d7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
8 changes: 5 additions & 3 deletions GNNLux/docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using Pkg
Pkg.activate(@__DIR__)
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNGraphs"))
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNlib"))
Pkg.develop(path=joinpath(@__DIR__, ".."))
Pkg.develop([
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNGraphs")),
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNlib")),
PackageSpec(path=joinpath(@__DIR__, "..")),
])
Pkg.instantiate()

using Documenter
Expand Down
6 changes: 4 additions & 2 deletions GNNlib/docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Pkg
Pkg.activate(@__DIR__)
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNGraphs"))
Pkg.develop(path=joinpath(@__DIR__, ".."))
Pkg.develop([
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNGraphs")),
PackageSpec(path=joinpath(@__DIR__, "..")),
])
Pkg.instantiate()

using Documenter
Expand Down
8 changes: 5 additions & 3 deletions GraphNeuralNetworks/docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using Pkg
Pkg.activate(@__DIR__)
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNGraphs"))
Pkg.develop(path=joinpath(@__DIR__, "..", "..", "GNNlib"))
Pkg.develop(path=joinpath(@__DIR__, ".."))
Pkg.develop([
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNGraphs")),
PackageSpec(path=joinpath(@__DIR__, "..", "..", "GNNlib")),
PackageSpec(path=joinpath(@__DIR__, "..")),
])
Pkg.instantiate()

using Documenter
Expand Down

0 comments on commit 9b379d7

Please sign in to comment.