From d5296083368dc1c401840565dcf44ead6baaa8e9 Mon Sep 17 00:00:00 2001 From: Alex Arslan Date: Mon, 15 Apr 2024 17:48:17 -0700 Subject: [PATCH] Amend organization name in documentation Both documentation building and installation instructions. --- docs/make.jl | 4 ++-- docs/src/installation.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 5ec8665..756a779 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -14,7 +14,7 @@ pages = [ format = Documenter.HTML( prettyurls = !("local" in ARGS), - canonical = "https://juice-jl.github.io/DirectedAcyclicGraphs.jl/stable/", + canonical = "https://tractables.github.io/DirectedAcyclicGraphs.jl/stable/", assets = ["assets/favicon.ico"], analytics = "UA-136089579-2", highlights = ["yaml"], @@ -39,7 +39,7 @@ makedocs( # for more information. deploydocs( target = "build", - repo = "github.com/Juice-jl/DirectedAcyclicGraphs.jl.git", + repo = "github.com/Tractables/DirectedAcyclicGraphs.jl.git", branch = "gh-pages", devbranch = "main", devurl = "dev", diff --git a/docs/src/installation.md b/docs/src/installation.md index a9c6378..f6f1d4d 100644 --- a/docs/src/installation.md +++ b/docs/src/installation.md @@ -17,7 +17,7 @@ julia -e 'using Pkg; Pkg.add("DirectedAcyclicGraphs")' To install the package with the latest commits on master branch, run: ```bash -julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/Juice-jl/DirectedAcyclicGraphs.jl.git"))' +julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/Tractables/DirectedAcyclicGraphs.jl.git"))' ``` #### From Julia Pkg REPL