From 34fcc631b81fdb5e0959456f7a5c95acf956b730 Mon Sep 17 00:00:00 2001 From: Artur Przybysz Date: Fri, 2 Feb 2024 10:04:53 +0000 Subject: [PATCH] updated dependencies --- Project.toml | 8 +++----- src/SpinGlassNetworks.jl | 2 +- test/factor.jl | 2 +- test/runtests.jl | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Project.toml b/Project.toml index a512b38..ab574cd 100644 --- a/Project.toml +++ b/Project.toml @@ -6,18 +6,16 @@ version = "0.3.0" [deps] CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" +Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" LabelledGraphs = "605abd48-4d17-4660-b914-d4df33194460" -LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5" [compat] CSV = "0.8" DocStringExtensions = "0.8" -LabelledGraphs = "0.3.2" -LightGraphs = "1.3" -MetaGraphs = "0.6" -julia = "1.7, 1.8" +LabelledGraphs = "0.4.4" +julia = "1.7, 1.8, 1.9, 1.10" [extras] Logging = "56ddb016-857b-54e1-b83d-db4d58db5568" diff --git a/src/SpinGlassNetworks.jl b/src/SpinGlassNetworks.jl index 0708569..5e64f60 100644 --- a/src/SpinGlassNetworks.jl +++ b/src/SpinGlassNetworks.jl @@ -1,6 +1,6 @@ module SpinGlassNetworks using LabelledGraphs -using LightGraphs +using Graphs using MetaGraphs # TODO: remove that using CSV using DocStringExtensions diff --git a/test/factor.jl b/test/factor.jl index b488648..958ab1f 100644 --- a/test/factor.jl +++ b/test/factor.jl @@ -1,5 +1,5 @@ using MetaGraphs -using LightGraphs +using Graphs using CSV enum(vec) = Dict(v => i for (i, v) ∈ enumerate(vec)) diff --git a/test/runtests.jl b/test/runtests.jl index bd783a3..e6d9866 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,6 +1,6 @@ using SpinGlassNetworks using LabelledGraphs -using LightGraphs +using Graphs using MetaGraphs using Logging using Test