diff --git a/analysis/Manifest.toml b/analysis/Manifest.toml index 82a4e5c..89caaf3 100644 --- a/analysis/Manifest.toml +++ b/analysis/Manifest.toml @@ -1049,7 +1049,7 @@ version = "0.4.3" [[deps.ReCo]] deps = ["CellListMap", "Dates", "Distributions", "Flux", "Intervals", "JLD2", "LaTeXStrings", "LinearAlgebra", "ProgressMeter", "Random", "ReinforcementLearning", "StaticArrays"] -git-tree-sha1 = "0ef60bf33b5d542a38cc92c3a13e6feee2a6781c" +git-tree-sha1 = "d6af2db91383795aef2be181f045b2db5dcfd279" repo-rev = "main" repo-url = "https://gitlab.rlp.net/mobitar/ReCo.jl" uuid = "b25f7548-fcc9-4c91-bc24-841b54f4dd54" diff --git a/graphics/CairoMakie_graphics/Manifest.toml b/graphics/CairoMakie_graphics/Manifest.toml index e2faf7e..1b27fd3 100644 --- a/graphics/CairoMakie_graphics/Manifest.toml +++ b/graphics/CairoMakie_graphics/Manifest.toml @@ -1014,7 +1014,7 @@ version = "0.4.3" [[deps.ReCo]] deps = ["CellListMap", "Dates", "Distributions", "Flux", "Intervals", "JLD2", "LaTeXStrings", "LinearAlgebra", "ProgressMeter", "Random", "ReinforcementLearning", "StaticArrays"] -git-tree-sha1 = "0ef60bf33b5d542a38cc92c3a13e6feee2a6781c" +git-tree-sha1 = "d6af2db91383795aef2be181f045b2db5dcfd279" repo-rev = "main" repo-url = "https://gitlab.rlp.net/mobitar/ReCo.jl" uuid = "b25f7548-fcc9-4c91-bc24-841b54f4dd54" diff --git a/graphics/Luxor_graphics/Manifest.toml b/graphics/Luxor_graphics/Manifest.toml index 2427e7a..2654f43 100644 --- a/graphics/Luxor_graphics/Manifest.toml +++ b/graphics/Luxor_graphics/Manifest.toml @@ -793,7 +793,7 @@ version = "1.5.3" [[deps.ReCo]] deps = ["CellListMap", "Dates", "Distributions", "Flux", "Intervals", "JLD2", "LaTeXStrings", "LinearAlgebra", "ProgressMeter", "Random", "ReinforcementLearning", "StaticArrays"] -git-tree-sha1 = "0ef60bf33b5d542a38cc92c3a13e6feee2a6781c" +git-tree-sha1 = "d6af2db91383795aef2be181f045b2db5dcfd279" repo-rev = "main" repo-url = "https://gitlab.rlp.net/mobitar/ReCo.jl" uuid = "b25f7548-fcc9-4c91-bc24-841b54f4dd54" diff --git a/performance/Manifest.toml b/performance/Manifest.toml index 7a3ce28..d9f2d19 100644 --- a/performance/Manifest.toml +++ b/performance/Manifest.toml @@ -839,7 +839,7 @@ version = "1.5.3" [[deps.ReCo]] deps = ["CellListMap", "Dates", "Distributions", "Flux", "Intervals", "JLD2", "LaTeXStrings", "LinearAlgebra", "ProgressMeter", "Random", "ReinforcementLearning", "StaticArrays"] -git-tree-sha1 = "0ef60bf33b5d542a38cc92c3a13e6feee2a6781c" +git-tree-sha1 = "d6af2db91383795aef2be181f045b2db5dcfd279" repo-rev = "main" repo-url = "https://gitlab.rlp.net/mobitar/ReCo.jl" uuid = "b25f7548-fcc9-4c91-bc24-841b54f4dd54" diff --git a/scripts/instantiate.jl b/scripts/instantiate.jl new file mode 100644 index 0000000..0ee87ac --- /dev/null +++ b/scripts/instantiate.jl @@ -0,0 +1,14 @@ +using Pkg: Pkg + +function instantiate() + projects = readlines("scripts/projects.txt") + + for project in projects + Pkg.activate(project) + Pkg.instantiate() + end + + return nothing +end + +instantiate() diff --git a/scripts/projects.txt b/scripts/projects.txt new file mode 100644 index 0000000..3a04ecf --- /dev/null +++ b/scripts/projects.txt @@ -0,0 +1,7 @@ +. +test +analysis +graphics/CairoMakie_graphics +graphics/Luxor_graphics +performance +visualization diff --git a/scripts/update.jl b/scripts/update.jl new file mode 100644 index 0000000..36a54d1 --- /dev/null +++ b/scripts/update.jl @@ -0,0 +1,14 @@ +using Pkg: Pkg + +function update() + projects = readlines("projects.txt") + + for project in projects + Pkg.activate(project) + Pkg.update() + end + + return nothing +end + +update() diff --git a/update.jl b/update.jl deleted file mode 100644 index 3ce6276..0000000 --- a/update.jl +++ /dev/null @@ -1,22 +0,0 @@ -using Pkg: Pkg - -function update() - projects = ( - ".", - "test", - "analysis", - "graphics/CairoMakie_graphics", - "graphics/Luxor_graphics", - "performance", - "visualization", - ) - - for project in projects - Pkg.activate(project) - Pkg.update() - end - - return nothing -end - -update() diff --git a/visualization/Manifest.toml b/visualization/Manifest.toml index 1cb6889..b5a3428 100644 --- a/visualization/Manifest.toml +++ b/visualization/Manifest.toml @@ -1050,7 +1050,7 @@ version = "0.4.3" [[deps.ReCo]] deps = ["CellListMap", "Dates", "Distributions", "Flux", "Intervals", "JLD2", "LaTeXStrings", "LinearAlgebra", "ProgressMeter", "Random", "ReinforcementLearning", "StaticArrays"] -git-tree-sha1 = "0ef60bf33b5d542a38cc92c3a13e6feee2a6781c" +git-tree-sha1 = "d6af2db91383795aef2be181f045b2db5dcfd279" repo-rev = "main" repo-url = "https://gitlab.rlp.net/mobitar/ReCo.jl" uuid = "b25f7548-fcc9-4c91-bc24-841b54f4dd54"