Skip to content

Commit

Permalink
updated dependencies (#10)
Browse files Browse the repository at this point in the history
* updated dependencies

* uptick version, expanded LabelledGraphs.jl compat

* Updated checks

* adding file missing in prev commit

* update CI

---------

Co-authored-by: Artur Przybysz <[email protected]>
  • Loading branch information
a-przybysz and Artur Przybysz authored Feb 2, 2024
1 parent 00209fa commit 0b18dc8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1.7'
- '1.8'
- '1.9'
- '1.10'
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -34,4 +34,15 @@ jobs:
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: lcov.info
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
8 changes: 3 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/SpinGlassNetworks.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module SpinGlassNetworks
using LabelledGraphs
using LightGraphs
using Graphs
using MetaGraphs # TODO: remove that
using CSV
using DocStringExtensions
Expand Down
2 changes: 1 addition & 1 deletion test/factor.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using MetaGraphs
using LightGraphs
using Graphs
using CSV

enum(vec) = Dict(v => i for (i, v) enumerate(vec))
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using SpinGlassNetworks
using LabelledGraphs
using LightGraphs
using Graphs
using MetaGraphs
using Logging
using Test
Expand Down

0 comments on commit 0b18dc8

Please sign in to comment.