Skip to content

Commit 8cde43f

Browse files
committed
bump compat from julia v1.5 to v1.6: due to readeach
1 parent 76d4a40 commit 8cde43f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Functors = "0.2, 0.3, 0.4, 0.5"
3636
NLopt = "0.5.1, 0.6, 1"
3737
StaticArrays = "0.8.3, 0.9, 0.10, 0.11, 0.12, 1"
3838
StatsBase = "0.26, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32, 0.33, 0.34"
39-
julia = "1.5"
39+
julia = "1.6"
4040

4141
[extras]
4242
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"

src/readwrite.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ in julia/base/io.jl, except that
99
linecomment argument: never actually used here
1010
=#
1111
function peekskip(io::IO, linecomment=nothing)
12-
for c in readeach(io, Char) # empty iterable if eof(io)
12+
for c in readeach(io, Char) # empty iterable if eof(io). requires julia v1.6
1313
if c === linecomment
1414
readline(io)
1515
elseif !isspace(c)

src/types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ articulation nodes.
206206
So external (pendent) edges are trivial blobs with 0 (non-internal) exit nodes.
207207
If the network is rooted at a leaf, there may be some pathological behaviors
208208
depending on the downstream task
209-
(e.g. this is checked for by [`leaststableancestor`])(@ref)).
209+
(e.g. this is checked for by [`leaststableancestor`](@ref)).
210210
"""
211211
number_exitnodes(p::Partition) = length(p.cycle)-1
212212
ispendent(p::Partition) = (length(p.cycle) == 1)

0 commit comments

Comments
 (0)