Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated dependencies #10

Merged
merged 5 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading