From 1958a14b6c748fe61cc9c770ec8b170fc2b693e0 Mon Sep 17 00:00:00 2001 From: Andrea Pasquale Date: Sat, 11 Nov 2023 18:43:01 +0100 Subject: [PATCH] julia 1.6, 1.7 added to matrix, minor docs fix --- .github/workflows/ci.yml | 4 +++- src/Graph.jl | 12 +----------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65332b2..aecd266 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,9 +12,11 @@ jobs: fail-fast: false matrix: version: + - '1.6' + - '1.7' - '1.8' - '1.9' - - nightly + - 'nightly' os: - ubuntu-latest arch: diff --git a/src/Graph.jl b/src/Graph.jl index 2f158f0..34aa853 100644 --- a/src/Graph.jl +++ b/src/Graph.jl @@ -18,17 +18,7 @@ For `JSMD` compatibility, see also: [`add_vertex!`](@ref), [`add_edge!`](@ref). -For `Graphs.jl` compatibility, see also: -[`has_vertex`](@ref Graphs.has_vertex) -[`has_edge`](@ref Graphs.has_edge) -[`edges`](@ref Graphs.edges) -[`edgetype`](@ref Graphs.edgetype) -[`inneighbors`](@ref Graphs.inneighbors) -[`ne`](@ref Graphs.ne) -[`nv`](@ref Graphs.nv) -[`outneighbors`](@ref Graphs.outneighbors) -[`vertices`](@ref Graphs.vertices) -[`is_directed`](@ref Graphs.is_directed) +For `Graphs.jl` compatibility, see also: [Graphs.jl interface](https://juliagraphs.org/Graphs.jl/dev/ecosystem/interface/) """ abstract type AbstractJSMDGraph{T} <: AbstractGraph{T} end