From 0b18dc8065bf54a3afa978f9898132cc354f3dff Mon Sep 17 00:00:00 2001 From: a-przybysz <126266136+a-przybysz@users.noreply.github.com> Date: Fri, 2 Feb 2024 11:59:26 +0100 Subject: [PATCH] updated dependencies (#10) * updated dependencies * uptick version, expanded LabelledGraphs.jl compat * Updated checks * adding file missing in prev commit * update CI --------- Co-authored-by: Artur Przybysz --- .github/workflows/CI.yml | 17 ++++++++++++++--- Project.toml | 8 +++----- src/SpinGlassNetworks.jl | 2 +- test/factor.jl | 2 +- test/runtests.jl | 2 +- 5 files changed, 20 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 56ad45a..1902114 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,8 +10,8 @@ jobs: fail-fast: false matrix: version: - - '1.7' - - '1.8' + - '1.9' + - '1.10' os: - ubuntu-latest - macOS-latest @@ -34,4 +34,15 @@ jobs: - uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: lcov.info \ No newline at end of file + path-to-lcov: lcov.info + flag-name: job-${{ matrix.version }}-${{ matrix.os }}-${{ matrix.arch }} + parallel: true + + finish: + needs: test + runs-on: ubuntu-latest + steps: + - uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true diff --git a/Project.toml b/Project.toml index a512b38..861d23a 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.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